-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.oxlintrc.json
More file actions
27 lines (27 loc) · 904 Bytes
/
Copy path.oxlintrc.json
File metadata and controls
27 lines (27 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["vitest", "eslint", "typescript", "unicorn", "oxc"],
"rules": {
"vitest/expect-expect": "error",
"vitest/no-commented-out-tests": "error",
"vitest/no-conditional-expect": "error",
"vitest/no-disabled-tests": "error",
"vitest/no-focused-tests": "error",
"vitest/no-identical-title": "error",
"vitest/no-import-node-test": "error",
"vitest/no-interpolation-in-snapshots": "error",
"vitest/no-mocks-import": "error",
"vitest/no-standalone-expect": "error",
"vitest/require-local-test-context-for-concurrent-snapshots": "error",
"vitest/valid-describe-callback": "error",
"vitest/valid-expect": "error"
},
"overrides": [
{
"files": ["src/mcp.ts", "src/mcp/**/*.ts"],
"rules": {
"no-console": ["error", { "allow": ["error"] }]
}
}
]
}