From 55580e848b78fa3e9ec05af61decbc7948432e32 Mon Sep 17 00:00:00 2001 From: microshine Date: Mon, 3 Jun 2024 13:25:31 +0200 Subject: [PATCH] chore: Update ESLint rules --- .eslintrc.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 09e624c5e..bdad4e9f1 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -20,19 +20,19 @@ "website" ], "rules": { - "@typescript-eslint/ban-ts-ignore": 0, - "@typescript-eslint/camelcase": 0, - "@typescript-eslint/explicit-function-return-type": 0, - "@typescript-eslint/interface-name-prefix": 0, - "@typescript-eslint/no-explicit-any": 0, - "semi": 0, - "@typescript-eslint/semi": 2, - "quotes": 0, - "@typescript-eslint/quotes": 2, - "no-duplicate-imports": 2, - "@typescript-eslint/explicit-module-boundary-types": 0, - "@typescript-eslint/triple-slash-reference": 0, - "no-trailing-spaces": 2, - "deprecation/deprecation": 2 + "@typescript-eslint/ban-ts-ignore": "off", + "@typescript-eslint/camelcase": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/no-explicit-any": "off", + "semi": "off", + "@typescript-eslint/semi": "warn", + "quotes": "off", + "@typescript-eslint/quotes": "warn", + "no-duplicate-imports": "warn", + "@typescript-eslint/explicit-module-boundary-types": "off", + "@typescript-eslint/triple-slash-reference": "off", + "no-trailing-spaces": "warn", + "deprecation/deprecation": "warn" } } \ No newline at end of file