mirror of
https://github.com/openclaw/lobster.git
synced 2026-08-14 00:48:09 +00:00
13 lines
376 B
JSON
13 lines
376 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/oxc-project/oxlint/main/npm/oxlint/schema.json",
|
|
"env": {
|
|
"node": true,
|
|
"es2022": true
|
|
},
|
|
"rules": {
|
|
"eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_", "caughtErrorsIgnorePattern": "^_", "varsIgnorePattern": "^_" }],
|
|
"eslint/no-undef": "error",
|
|
"typescript/no-explicit-any": "off"
|
|
}
|
|
}
|