From 18c90317b573669d5d9cc95048e0ca2ad45de9bb Mon Sep 17 00:00:00 2001 From: Justin Beckwith Date: Wed, 15 Jan 2020 15:15:06 -0800 Subject: [PATCH] fix: disable no-use-before-define --- .eslintrc.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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,