2
0
Эх сурвалжийг харах

Remove webview-specific lint rules

Matt Rubens 1 жил өмнө
parent
commit
9d1d726751

+ 0 - 40
webview-ui/.eslintrc.json

@@ -1,40 +0,0 @@
-{
-	"root": true,
-	"extends": [
-		"eslint:recommended",
-		"plugin:react/recommended",
-		"plugin:@typescript-eslint/recommended",
-		"plugin:react-hooks/recommended"
-	],
-	"parser": "@typescript-eslint/parser",
-	"plugins": ["react", "@typescript-eslint", "react-hooks"],
-	"rules": {
-		"react/react-in-jsx-scope": "off",
-		"@typescript-eslint/explicit-module-boundary-types": "off",
-		"@typescript-eslint/no-explicit-any": "warn",
-		"react/display-name": "warn",
-		"no-case-declarations": "warn",
-		"react/no-unescaped-entities": "warn",
-		"react/jsx-key": "warn",
-		"no-extra-semi": "warn",
-		"@typescript-eslint/no-var-requires": "warn",
-		"@typescript-eslint/no-unused-vars": [
-			"warn",
-			{
-				"argsIgnorePattern": "^_",
-				"varsIgnorePattern": "^_",
-				"caughtErrorsIgnorePattern": "^_"
-			}
-		]
-	},
-	"settings": {
-		"react": {
-			"version": "detect"
-		}
-	},
-	"env": {
-		"browser": true,
-		"es2021": true,
-		"node": true
-	}
-}