Skip to content

Commit

Permalink
feature: remove slow and unused eslint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
stagas committed Oct 16, 2022
1 parent 31adf37 commit 55d76aa
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,28 @@ module.exports = {
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-extra-semi': 'off',
'@typescript-eslint/no-inferrable-types': 'warn',
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/no-namespace': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-this-alias': 'off',
'@typescript-eslint/no-unused-vars': ['error', { args: 'all', argsIgnorePattern: '^_' }],
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-loss-of-precision': 'off',
'@typescript-eslint/triple-slash-reference': 'off',
'@typescript-eslint/adjacent-overload-signatures': 'off',
'@typescript-eslint/prefer-as-const': 'off',
'react/jsx-curly-brace-presence': 'off',
'react/jsx-pascal-case': 'off',
'react/jsx-fragments': 'off',
'react/jsx-uses-react': 'off',
'react/jsx-no-target-blank': 'off',
'react/jsx-no-comment-textnodes': 'off',
'no-mixed-spaces-and-tabs': 'off',
'no-regex-spaces': 'off',
'no-unexpected-multiline': 'off',
'no-constant-condition': 'off',
'no-cond-assign': 'off',
'no-empty': 'off',
'prefer-spread': 'off',
},
}

0 comments on commit 55d76aa

Please sign in to comment.