monkeytype/backend/.oxlintrc.json
2025-04-16 19:15:30 +02:00

17 lines
346 B
JSON

{
"extends": [
"../packages/oxlint-config/index.json"
// "@monkeytype/oxlint-config"
],
"overrides": [
{
"files": ["__tests__/**"],
"plugins": ["jest", "vitest"],
"rules": {
"no-explicit-any": "allow",
"explicit-function-return-type": "off",
"ban-ts-comment": "off"
}
}
]
}