diff --git a/.eslintrc.js b/.eslintrc.js index d751ab6a..ecc54801 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -17,6 +17,7 @@ module.exports = { '@typescript-eslint/no-non-null-assertion': 'off', '@typescript-eslint/no-shadow': ['off'], '@typescript-eslint/no-unused-vars': ['error'], + '@typescript-eslint/no-use-before-define': ['error'], 'default-case': 'off', 'import/extensions': 'off', 'import/no-absolute-path': 'off', @@ -53,6 +54,7 @@ module.exports = { 'no-shadow': 'off', 'no-underscore-dangle': 'off', 'no-unused-vars': 'off', + 'no-use-before-define': 'off', 'prefer-destructuring': 'off', 'react/function-component-definition': 'off', 'react/jsx-filename-extension': [2, { extensions: ['.js', '.jsx', '.ts', '.tsx'] }],