diff --git a/.eslintrc.json b/.eslintrc.json index 1e456152..5dffe0c4 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -26,13 +26,14 @@ ], "rules": { "@typescript-eslint/no-non-null-assertion": "off", - "node/no-missing-import": "off", - "node/no-unsupported-features/es-syntax": "off", + "@typescript-eslint/no-use-before-define": "off", "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/camelcase": "off", + "node/no-missing-import": "off", + "node/no-unsupported-features/es-syntax": "off", "node/no-missing-require": "off", - "no-dupe-class-members": "off", - "node/shebang": "off" + "node/shebang": "off", + "no-dupe-class-members": "off" }, "parserOptions": { "ecmaVersion": 2018,