Skip to content

Commit

Permalink
feat: use type checked recommended rules
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Use @typescript-eslint/recommended-type-checked and
@typescript-eslint/stylistic-type-checked rules instead of @typescript-eslint/recommended
  • Loading branch information
mfeltscher committed Oct 20, 2023
1 parent e2c9855 commit 2a993ba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,13 @@ module.exports = {
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-type-checked',
'plugin:@typescript-eslint/stylistic-type-checked',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'prettier'],
};

0 comments on commit 2a993ba

Please sign in to comment.