monkeytype/frontend/.oxlintrc.json
2025-06-14 15:33:52 +02:00

28 lines
545 B
JSON

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