-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy path.oxlintrc.json
More file actions
25 lines (25 loc) · 775 Bytes
/
.oxlintrc.json
File metadata and controls
25 lines (25 loc) · 775 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
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"extends": [
"./packages/cli/config/oxlint/core/.oxlintrc.json",
"./packages/cli/config/oxlint/react/.oxlintrc.json",
"./packages/cli/config/oxlint/next/.oxlintrc.json",
"./packages/cli/config/oxlint/vitest/.oxlintrc.json"
],
"ignorePatterns": [
"packages/design-system/components/ui",
"packages/design-system/components/kibo-ui",
"packages/design-system/lib/utils.ts",
"packages/design-system/hooks/use-mobile.ts",
"apps/web/components/ai-elements",
"apps/web/components/ui",
"apps/web/lib/utils.ts",
"apps/web/hooks/use-mobile.ts",
"packages/cli/config/biome",
"test"
],
"rules": {
"max-statements": "off",
"complexity": "off"
}
}