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

18 lines
375 B
JSON

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