What version of Oxlint are you using?
0.15.6
What command did you run?
oxlint -c .oxlintrc.json --quiet --fix "./tools/config/src/app.config.d.ts"
What does your .oxlint.json config file look like?
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"ignorePatterns": ["**/app.config.d.ts", "global.d.ts"],
...
}
What happened?
It seems that the ignorePatterns attribut within the config is ignored when an file path is provided as argument.
So my file ./tools/config/src/app.config.d.ts still get lint in this case. If I don't put any argument in the commande,ignorePatterns works fine.
Referring to this issue it seems to be a bug?
Thanks !
What version of Oxlint are you using?
0.15.6
What command did you run?
oxlint -c .oxlintrc.json --quiet --fix "./tools/config/src/app.config.d.ts"
What does your
.oxlint.jsonconfig file look like?What happened?
It seems that the
ignorePatternsattribut within the config is ignored when an file path is provided as argument.So my file
./tools/config/src/app.config.d.tsstill get lint in this case. If I don't put any argument in the commande,ignorePatternsworks fine.Referring to this issue it seems to be a bug?
Thanks !