mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2026-01-06 23:44:19 +08:00
33 lines
664 B
JSON
33 lines
664 B
JSON
{
|
|
"extends": [
|
|
"../packages/oxlint-config/index.jsonc"
|
|
// "@monkeytype/oxlint-config"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": ["__tests__/**"],
|
|
"plugins": [
|
|
"typescript",
|
|
"unicorn",
|
|
"oxc",
|
|
"import",
|
|
"node",
|
|
"promise",
|
|
"jest",
|
|
"vitest"
|
|
],
|
|
"rules": {
|
|
"no-explicit-any": "allow",
|
|
"explicit-function-return-type": "off",
|
|
"ban-ts-comment": "off"
|
|
}
|
|
},
|
|
{
|
|
"files": ["__tests__/**/*.d.ts"],
|
|
"rules": {
|
|
"typescript/consistent-type-definitions": "off",
|
|
"typescript/no-empty-object-type": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|