Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 573 Bytes

MIGRATING.md

File metadata and controls

19 lines (16 loc) · 573 Bytes

If you are migrating from @lifeomic/typescript-tools, you may need to make some or all of these changes:

  • Install and extend eslint-config-prettier, to prevent conflicting behavior between prettier and ESLint.
    yarn add -D eslint-config-prettier
    
    // .eslintrc.js
    module.exports = {
      extends: [
        '@lifeomic/standards',
        'prettier' // <-- this
      ],
      // ...
    }