diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-13 04:03:01 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-13 04:03:01 +0000 |
| commit | afc26a8721a58de5c0093ec5521895f0f08f1cf4 (patch) | |
| tree | 12d044eba89cdb41c816b0b9a998b9ff99e7ad22 /eslint.config.js | |
| parent | 94924f37b61157d962eb4653ee2635a25e8546ed (diff) | |
Remove some unnecessary and/or redundant ESLint rules.
Diffstat (limited to 'eslint.config.js')
| -rw-r--r-- | eslint.config.js | 8 |
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) |