Files
test/packages/oxlint-config/plugin.jsonc
Benjamin Falch 2bc741fb78
Some checks failed
Mark Stale PRs / stale (push) Has been cancelled
adding monkeytype
2026-04-23 13:53:44 +02:00

34 lines
878 B
JSON

{
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxlint/configuration_schema.json",
"categories": {
"correctness": "off",
"suspicious": "off",
"pedantic": "off",
"perf": "off",
"style": "off",
"restriction": "off",
"nursery": "off",
},
"jsPlugins": ["./plugins/monkeytype-rules.js"],
"rules": {
"monkeytype-rules/no-testing-access": "error",
"monkeytype-rules/no-mixed-nullish-coalescing": "error",
},
"overrides": [
{
"files": ["__tests__/**/*.ts"],
"rules": {
"monkeytype-rules/no-testing-access": "off",
},
},
{
"files": ["**/*.tsx"],
"rules": {
"monkeytype-rules/prefer-arrow-in-component": "error",
"monkeytype-rules/one-component-per-file": "error",
"monkeytype-rules/component-pascal-case": "error",
},
},
],
}