Skip to content

Commit

Permalink
Remove rule overwrites that are no longer needed
Browse files Browse the repository at this point in the history
  • Loading branch information
acelaya committed Jun 6, 2024
1 parent 4891ecb commit a847ba0
Showing 1 changed file with 2 additions and 20 deletions.
22 changes: 2 additions & 20 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,28 +41,10 @@ module.exports = {
}],

// Disabled rules from presets
'object-curly-newline': 'off',
'implicit-arrow-linebreak': 'off',
'no-restricted-globals': 'off',
'default-case': 'off',
'import/no-cycle': 'off',
'import/prefer-default-export': 'off',
'import/no-extraneous-dependencies': 'off',
'react/display-name': ['off', { ignoreTranspilerName: false }],
'react/react-in-jsx-scope': 'off',
'react/display-name': ['off', { 'ignoreTranspilerName': false }],
'react/prop-types': 'off',
'react/require-default-props': 'off',
'react/no-unused-prop-types': 'off',
'react/function-component-definition': 'off',
'react/no-array-index-key': 'off',
'react/no-unstable-nested-components': 'off',
'react/jsx-one-expression-per-line': 'off',
'react/jsx-props-no-spreading': 'off',
'react/jsx-no-useless-fragment': 'off',
'@typescript-eslint/no-unused-expressions': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/lines-between-class-members': 'off'
'@typescript-eslint/no-explicit-any': 'off'
},
overrides: [
{
Expand Down

0 comments on commit a847ba0

Please sign in to comment.