-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.oxlintrc.json
More file actions
29 lines (29 loc) · 787 Bytes
/
Copy path.oxlintrc.json
File metadata and controls
29 lines (29 loc) · 787 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
28
29
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"extends": [".oxlintrc.base.json"],
"ignorePatterns": [
"*.svelte",
"scripts/**",
"src/lib/actions/**",
"src/lib/blocks/**",
"src/lib/components/ui/**",
"src/lib/components/ui-extra/**",
"src/lib/hooks/**",
"src/lib/util/**",
"src/lib/utils.ts"
],
"overrides": [
{
"files": ["**/src/tests/**"],
"rules": {
"typescript/no-unsafe-type-assertion": "off",
"unicorn/no-null": "off",
"typescript/explicit-member-accessibility": "off",
"eslint/class-methods-use-this": "off",
"eslint/init-declarations": "off",
"eslint/prefer-destructuring": "off",
"non-nullable-type-assertion-style": "off"
}
}
]
}