We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ignorePatterns
latest
oxlint
.oxlintrc.json
{ "plugins": [], "rules": { "no-debugger": "error" }, "ignorePatterns": [ "ignore_folder/**", "!ignore_folder/unignore_folder/**" ] }
Eslint tells about the concept between denylist and allowlist https://eslint.org/docs/v8.x/use/configure/ignore#the-eslintignore-file . I would expect that files under the folder unignore_folder are linted, but I got this result:
unignore_folder
0 │+########## 1 │+arguments: -c .oxlintrc.json 2 │+working directory: fixtures/config_ignore_patterns/unignore_directory 3 │+---------- 4 │+Found 0 warnings and 0 errors. 5 │+Finished in <variable>ms on 0 files with 48 rules using 1 threads. 6 │+---------- 7 │+CLI result: LintSucceeded 8 │+----------
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What version of Oxlint are you using?
latest
What command did you run?
oxlint
What does your
.oxlintrc.json
config file look like?What happened?
Eslint tells about the concept between denylist and allowlist https://eslint.org/docs/v8.x/use/configure/ignore#the-eslintignore-file .
I would expect that files under the folder
unignore_folder
are linted, but I got this result:The text was updated successfully, but these errors were encountered: