Skip to content

Commit

Permalink
fix: eslint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
p1atdev authored and ddPn08 committed Feb 8, 2023
1 parent 343690d commit f18d9e5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ module.exports = {
es2021: true,
},
extends: [
'eslint:recommended',
'plugin:react/recommended',
'eslint:recommended',
'plugin:import/recommended',
'plugin:import/typescript',
'plugin:@typescript-eslint/recommended',
'prettier',
],
Expand All @@ -28,6 +30,7 @@ module.exports = {
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-namespace': 'off',
'@typescript-eslint/no-non-null-asserted-optional-chain': 'off',
'import/no-unresolved': 'off',
'unused-imports/no-unused-imports': 'error',
'unused-imports/no-unused-vars': [
'warn',
Expand Down

0 comments on commit f18d9e5

Please sign in to comment.