diff --git a/eslint.config.js b/eslint.config.js index d25ca6a..a905f77 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -23,11 +23,17 @@ export default [ destructuredArrayIgnorePattern: "^_", }], "no-var": "error", + "no-eval": "error", + "no-implied-eval": "error", "eqeqeq": "error", "no-invalid-this": "error", + "no-extend-native": "error", "prefer-arrow-callback": "error", + "no-implicit-globals": "error", + "no-throw-literal": "error", "no-implicit-coercion": "warn", "object-shorthand": "warn", + "curly": "warn", "@stylistic/js/indent": ["warn", "tab"], "@stylistic/js/quotes": ["warn", "double"], "@stylistic/js/semi": "warn",