mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-09-06 06:37:35 +08:00
### Description This PR updates oxlint to 1.8.0 and fixes the resulting errors in order to keep oxlint's ecosystem CI green. Thanks for using oxlint --------- Co-authored-by: Miodec <jack@monkeytype.com>
33 lines
663 B
JSON
33 lines
663 B
JSON
{
|
|
"extends": [
|
|
"../packages/oxlint-config/index.json"
|
|
// "@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"
|
|
}
|
|
}
|
|
]
|
|
}
|