What version of Oxlint are you using?
1.3.0
What command did you run?
oxlint
What does your .oxlintrc.json config file look like?
What happened?


https://eslint.org/docs/latest/rules/no-irregular-whitespace#options
https://github.com/CoffeeChaton/oxlint-no-irregular-whitespace
I want check no-irregular-whitespace in regexp / string
and I try to set .oxlintrc.json some opt, but not match warn at line 43.
I want to be warned about unimplemented options or unexpected configuration files.
Thank you always for your excellent work.
What version of Oxlint are you using?
1.3.0What command did you run?
oxlintWhat does your
.oxlintrc.jsonconfig file look like?{ "$schema": "./node_modules/oxlint/configuration_schema.json", "plugins": [ "import", "jsdoc", "unicorn", "promise", "typescript", "oxc", "eslint" ], "ignorePatterns": [ "eslint.config.mjs", ], "rules": { // "no-irregular-whitespace": "warn" // or "no-irregular-whitespace": [ "warn", { // I want to be warned about unimplemented options or unexpected configuration files. "skipStrings": false, "skipComments": false, "skipRegExps": false, "skipTemplates": false, "skipJSXText": false, } ] } }What happened?
I want check
no-irregular-whitespacein regexp / stringand I try to set .oxlintrc.json some opt, but not match warn at line 43.
I want to be warned about unimplemented options or unexpected configuration files.
Thank you always for your excellent work.