Files
test/backend/.oxlintrc.json
Benjamin Falch 2bc741fb78
Some checks failed
Mark Stale PRs / stale (push) Has been cancelled
adding monkeytype
2026-04-23 13:53:44 +02:00

17 lines
381 B
JSON

{
"ignorePatterns": ["node_modules", "__migration__", "dist", ".turbo"],
"extends": [
"../packages/oxlint-config/index.jsonc",
"../packages/oxlint-config/plugin.jsonc"
// "@monkeytype/oxlint-config"
],
"overrides": [
{
"files": ["src/**/*.ts"],
"rules": {
"import/no-cycle": "off" //todo: fix cycles and turn this on
}
}
]
}