From f4bbf5805ae343f0ed534123b44724d4008ad82b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Simon?= Date: Sun, 12 May 2024 22:21:21 +0200 Subject: [PATCH] Fixed eslint rules --- .eslintrc.json | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 9aa974b..3fc7a4e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -30,12 +30,7 @@ "no-underscore-dangle": "error", "import/extensions": ["error", "always", { "ignorePackages": true }], "import/prefer-default-export": "off", - "@typescript-eslint/no-use-before-define": [ - "error", - { - "functions": false // functions are hoisted - } - ], + "@typescript-eslint/no-use-before-define": "off", "@typescript-eslint/consistent-type-definitions": "off", "@typescript-eslint/prefer-nullish-coalescing": "off", "@typescript-eslint/prefer-readonly": "error",