Files
test/packages/oxlint-config/rules/ts-disabled.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

14 lines
604 B
JSON

{
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxlint/configuration_schema.json",
"rules": {
"typescript/non-nullable-type-assertion-style": "off",
"typescript/switch-exhaustiveness-check": "off",
"typescript/unbound-method": "off",
"typescript/prefer-promise-reject-errors": "off",
"typescript/no-redundant-type-constituents": "off",
"typescript/require-array-sort-compare": "off",
//unnecessary, might aswell keep template strings in case a string might be added in the future
"typescript/no-unnecessary-template-expression": "off",
},
}