Skip to content

Commit

Permalink
Remove ESLint rules with 'warn'
Browse files Browse the repository at this point in the history
  • Loading branch information
emmatown committed Sep 26, 2022
1 parent 5dfaf06 commit 6b0649c
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,13 @@ module.exports = {
'jest/no-disabled-tests': 'error',
'object-curly-spacing': ['error', 'always'],
quotes: ['error', 'single', { avoidEscape: true, allowTemplateLiterals: true }],
'react/jsx-boolean-value': 'warn',
'react/jsx-boolean-value': 'error',
'react/jsx-no-undef': 'error',
'react/jsx-uses-react': 'error',
'react/jsx-uses-vars': 'error',
'react/jsx-wrap-multilines': 'warn',
'react/no-did-mount-set-state': 'warn',
'react/no-did-update-set-state': 'warn',
'react/no-unknown-property': 'warn',
'react/jsx-wrap-multilines': 'error',
'react/react-in-jsx-scope': 'error',
'react/self-closing-comp': 'warn',
'react/sort-prop-types': 'warn',
'react/self-closing-comp': 'error',
semi: 'off',
strict: 'off',
'no-restricted-syntax': [
Expand Down

0 comments on commit 6b0649c

Please sign in to comment.