Skip to content

Commit

Permalink
feat(eslint): off eslint 'no-use-before-define'
Browse files Browse the repository at this point in the history
  • Loading branch information
PoytaL committed Mar 1, 2021
1 parent 5817957 commit 092093b
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions eslint/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,7 @@ module.exports = {
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
'no-negated-condition': 'warn',
'default-case': 'off',
'no-use-before-define': [
'error',
{
functions: false,
classes: true,
variables: true,
},
],
'no-use-before-define': 'off',

// code smell detection
complexity: ['warn', 20],
Expand Down

0 comments on commit 092093b

Please sign in to comment.