Migrating from @lifeomic/typescript-tools
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 betweenprettier
and ESLint.yarn add -D eslint-config-prettier
// .eslintrc.js module.exports = { extends: [ '@lifeomic/standards', 'prettier' // <-- this ], // ... }