-
-
Notifications
You must be signed in to change notification settings - Fork 655
Closed
Labels
A-linterArea - LinterArea - LinterC-bugCategory - BugCategory - Buggood first issueExperience Level - Good for newcomersExperience Level - Good for newcomers
Description
What version of Oxlint are you using?
0.15.8
What command did you run?
yarn oxlint -c oxlintrc.json
What does your .oxlint.json
config file look like?
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["react", "typescript", "oxc", "promise", "jest", "jsx_a11y"],
"env": {
"browser": true,
"node": true,
"commonjs": true,
"es6": true,
"jest": true
},
"settings": {},
"rules": {
"eqeqeq": ["warn", { "null": "ignore" }],
"import/no-cycle": "warn",
"no-unused-vars": [
"warn",
{
"args": "none",
"ignoreRestSiblings": true,
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrors": "none"
}
],
"no-extra-boolean-cast": "off",
"no-standalone-expect": "off",
"no-conditional-expect": "off"
},
"overrides": [
{
"files": ["*.test.ts", "*.spec.ts"],
"rules": {
"@typescript-eslint/no-explicit-any": "off"
}
}
]
}
What happened?
Metadata
Metadata
Assignees
Labels
A-linterArea - LinterArea - LinterC-bugCategory - BugCategory - Buggood first issueExperience Level - Good for newcomersExperience Level - Good for newcomers