From 03ebebf6fb8a3753aced247f96b484ef30bf3ed5 Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Sat, 7 Mar 2026 14:02:56 -0800 Subject: [PATCH] rm unused spec/.eslintrc.js This file hasn't done anything since the upgrade to eslint 9. --- spec/.eslintrc.js | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 spec/.eslintrc.js diff --git a/spec/.eslintrc.js b/spec/.eslintrc.js deleted file mode 100644 index bafb67ca..00000000 --- a/spec/.eslintrc.js +++ /dev/null @@ -1,23 +0,0 @@ -module.exports = { - ignorePatterns: ['support/ci.js', 'support/jasmine-browser.js'], - rules: { - // Relax rules for now to allow for the quirks of the test suite - // TODO: We should probably remove these & fix the resulting errors - quotes: 'off', - semi: 'off', - 'key-spacing': 'off', - 'space-before-blocks': 'off', - 'no-trailing-spaces': 'off', - 'block-spacing': 'off', - - // Additionally, check for unused fn args - // TODO: consider doing this in src files as well as specs - 'no-unused-vars': ['error', { args: 'after-used' }], - - // Since linting is done at the end of the process and doesn't stop us - // from running tests, it makes sense to fail if debugger statements - // or console references are present. - 'no-debugger': 'error', - 'no-console': 'error' - } -};