Skip to content

Commit

Permalink
update lint rules to disable new warning after eslint update
Browse files Browse the repository at this point in the history
  • Loading branch information
imaksp committed Feb 14, 2024
1 parent 8343ec8 commit 17e36bd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .eslintrc.front.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,15 @@ module.exports = {
'react/state-in-constructor': 0,
'react/static-property-placement': 0,
'react/display-name': 0,
'default-param-last': 'warn',
'prefer-regex-literals': 0,
'react/jsx-no-useless-fragment': 0,
'react/jsx-no-constructed-context-values': 'warn',
'react/jsx-no-constructed-context-values': 0,
'react/no-unused-class-component-methods': 0,
'react/no-unstable-nested-components': 'warn',
'import/no-import-module-exports': 'warn',
'no-fallthrough': 'warn',
'class-methods-use-this': 'warn',
'no-loss-of-precision': 'warn'
'react/no-unstable-nested-components': 0,
'import/no-import-module-exports': 0,
'no-fallthrough': 0,
'class-methods-use-this': 0,
'no-loss-of-precision': 0,
'default-param-last': 0,
},
};

0 comments on commit 17e36bd

Please sign in to comment.