We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9299f79 commit 9dda4eeCopy full SHA for 9dda4ee
eslint.config.js
@@ -23,11 +23,17 @@ export default [
23
destructuredArrayIgnorePattern: "^_",
24
}],
25
"no-var": "error",
26
+ "no-eval": "error",
27
+ "no-implied-eval": "error",
28
"eqeqeq": "error",
29
"no-invalid-this": "error",
30
+ "no-extend-native": "error",
31
"prefer-arrow-callback": "error",
32
+ "no-implicit-globals": "error",
33
+ "no-throw-literal": "error",
34
"no-implicit-coercion": "warn",
35
"object-shorthand": "warn",
36
+ "curly": "warn",
37
"@stylistic/js/indent": ["warn", "tab"],
38
"@stylistic/js/quotes": ["warn", "double"],
39
"@stylistic/js/semi": "warn",
0 commit comments