-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.oxlintrc.json
More file actions
30 lines (30 loc) · 841 Bytes
/
.oxlintrc.json
File metadata and controls
30 lines (30 loc) · 841 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
30
{
"$scheme": "./node_modules/oxlint/configuration_schema.json",
"ignorePatterns": [
"dist/**",
"build/**",
"node_modules/**",
"*.lock",
".gitignore",
".npmrc",
".vscode/**",
".svelte-kit/**",
"assets/**",
"static/**",
"docs/**"
],
"rules": {
"eslint/sort-keys": "off",
"eslint/sort-imports": "off",
"eslint/no-unused-vars": "warn",
"eslint/func-style": "off",
"eslint/consistent-type-definitions": "off",
"eslint/filename-case": "off",
"eslint/no-var": "error",
"eslint/no-else-return": "error",
"eslint/no-negated-condition": "warn",
"eslint/no-unneeded-ternary": "error",
"eslint/no-console": "warn",
"eslint/no-debugger": "error"
}
}