monkeytype/backend/.oxlintrc.json

15 lines
335 B
JSON

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