oxc/apps/oxlint/fixtures/two_rules_with_same_name/.oxlintrc.json
dalaoshu 8ce21d1d48
fix(linter): can't disable no-nested-ternary rule anymore (#8600)
closes #8485 

Since we currently support two rules with the same `rule_name` but
different `plugin_names`, some of the original logic is no longer
applicable. As a result, I have made some adjustments.
2025-01-31 21:03:53 +08:00

10 lines
144 B
JSON

{
"plugins": [
"oxc",
"unicorn"
],
"rules": {
"eslint/no-nested-ternary": "off",
"unicorn/no-nested-ternary": "off"
}
}