Skip to content

Commit

Permalink
fix: @typescript-eslint/no-use-before-define -> no-use-before-define
Browse files Browse the repository at this point in the history
  • Loading branch information
Limon Monte committed Dec 2, 2020
1 parent cf24638 commit af7957d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ module.exports = {
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/indent': ['error', 2],
'@typescript-eslint/no-this-alias': 0,
'@typescript-eslint/no-use-before-define': 0,
'@typescript-eslint/no-var-requires': 0,
'@typescript-eslint/no-empty-interface': 0,
'@typescript-eslint/no-explicit-any': 0,
Expand All @@ -24,6 +23,7 @@ module.exports = {
'complexity': ['error', { max: 10 }],
'import/named': 'error',
'no-console': ['error', { allow: ['warn', 'error', 'info'] }],
'no-use-before-define': 0,
'no-var': ['error'],
'prefer-template': 'error',
'quote-props': ['error', 'consistent'],
Expand Down

0 comments on commit af7957d

Please sign in to comment.