Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 505 Bytes

File metadata and controls

17 lines (11 loc) · 505 Bytes

dev-configs

The development environment configurations we all extend from.

Prettier

We use Prettier to format code consistently. Our base configuration is stored here in prettier/base.js.

To extend from our configuration you can use something like this in your project's prettier.config.js:

const defaults = require('@thorough/dev-configs/prettier/base')

module.exports = Object.assign({}, defaults, {
  // Your personal overrides here.
})