monkeytype/backend/.oxlintrc.json
Cameron 2180e3b603
chore(deps): upgrade oxlint to 1.8.0, fix errors (@camc314) (#6776)
### 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>
2025-07-24 14:32:12 +02:00

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"
}
}
]
}