d523b6d02a
Lint / JS (eslint) (push) Failing after 8s
Node.js env for server.js/worker/, browser env for public/. All errors downgraded to warnings (empty blocks, inner declarations, loose equality, useless escape, constant condition) for practical CI. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
308 B
JSON
12 lines
308 B
JSON
{
|
|
"env": { "browser": true, "es2021": true },
|
|
"parserOptions": { "ecmaVersion": 2021, "sourceType": "script" },
|
|
"rules": {
|
|
"no-unused-vars": "warn",
|
|
"no-empty": "warn",
|
|
"no-inner-declarations": "warn",
|
|
"semi": ["error", "always"],
|
|
"eqeqeq": "warn"
|
|
}
|
|
}
|