Oxlint doesn't follow extends
directive in .eslintrc.json #3362
Open
Description
Given a .eslint.json
file like this:
{
"extends": "../.eslintrc.json",
"rules": {
"no-console": "error",
"brace-style": "off"
}
}
Oxlint will only check for these two rules, ignoring all the parent rules from ../.eslintrc.json
.
Running oxlint with the following command:
oxlint --symlinks -c ../.eslintrc.json -A unicorn --deny-warnings --tsconfig ./tsconfig.json .