What version of Oxlint are you using?
1.69.0
What command did you run?
yarn oxlint -c oxlint.config.mjs
What does your .oxlintrc.json (or oxlint.config.ts) config file look like?
import { defineConfig } from 'oxlint';
export default defineConfig({
plugins: ['eslint'],
rules: {
'eslint/capitalized-comments': [
'error',
'always',
{
ignoreConsecutiveComments: true,
},
],
},
});
What happened?
Providing options to eslint/capitalized-comments triggers a configuration error:
Failed to parse oxlint configuration file.
× Invalid configuration for rule `capitalized-comments`:
│ This rule does not accept configuration options.
What version of Oxlint are you using?
1.69.0
What command did you run?
yarn oxlint -c oxlint.config.mjsWhat does your
.oxlintrc.json(oroxlint.config.ts) config file look like?What happened?
Providing options to
eslint/capitalized-commentstriggers a configuration error: