Skip to content

Commit

Permalink
Merge pull request #118 from PrefectHQ/remove-ts-overlap-rules
Browse files Browse the repository at this point in the history
Disable typescript-eslint recommended rules that overlap with TS checks.
  • Loading branch information
collincchoy authored Apr 1, 2024
2 parents d335726 + f60e457 commit 4ccc10a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,12 @@ module.exports = {
'id-length': ['warn', { exceptions: ['x', 'y', 'i'] }],
'implicit-arrow-linebreak': 'warn',
'import/no-duplicates': 'warn',
'import/no-unresolved': 'warn',
'import/order': ['warn', { 'alphabetize': { 'order': 'asc', 'caseInsensitive': true } }],
'import/named': 'off',
'import/namespace': 'off',
'import/default': 'off',
'import/no-named-as-default-member': 'off',
'import/no-unresolved': 'off',
'indent': ['warn', 2, { 'SwitchCase': 1 }],
'key-spacing': ['warn', { afterColon: true }],
'keyword-spacing': ['warn', { before: true, after: true }],
Expand Down

0 comments on commit 4ccc10a

Please sign in to comment.