summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsupahgreg <supahgreg@users.noreply.github.com>2025-10-13 04:03:01 +0000
committersupahgreg <supahgreg@users.noreply.github.com>2025-10-13 04:03:01 +0000
commitafc26a8721a58de5c0093ec5521895f0f08f1cf4 (patch)
tree12d044eba89cdb41c816b0b9a998b9ff99e7ad22
parent94924f37b61157d962eb4653ee2635a25e8546ed (diff)
Remove some unnecessary and/or redundant ESLint rules.
-rw-r--r--eslint.config.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/eslint.config.js b/eslint.config.js
index faa97e718..172f0ce21 100644
--- a/eslint.config.js
+++ b/eslint.config.js
@@ -24,17 +24,9 @@ export default [
},
rules: {
- 'no-undef': 'warn',
- 'no-unused-vars': 'warn',
'no-console': 'off',
-
'prefer-const': 'error',
- 'no-var': 'warn',
-
'eqeqeq': ['error', 'always'],
- 'no-caller': 'error',
- 'no-proto': 'error',
-
'no-empty': ['error', { 'allowEmptyCatch': true }],
// Stylistic rules (replacing those deprecated in ESLint)