diff --git a/index.js b/index.js index 424dca6..23a4094 100644 --- a/index.js +++ b/index.js @@ -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, @@ -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'],