0.3.1 • Published 6 years ago

@thorough/dev-configs v0.3.1

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

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.
});

TSLint

We prefer TypeScript and use TSLint to lint it. Our primary base configuration is here at tslint/base.js. You can extend it in your project's tslint.json like this:

{
  "extends": ["@thorough/dev-configs/tslint/base"],
  "rules": {
    "no-submodule-imports": [true, "date-fns/esm"]
  }
}
0.3.1

6 years ago

0.3.0

6 years ago

0.2.0

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago