17 lines
381 B
JSON
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
|
|
}
|
|
}
|
|
]
|
|
}
|