-
-
Notifications
You must be signed in to change notification settings - Fork 389
Expand file tree
/
Copy path.oxlintrc.json
More file actions
53 lines (53 loc) · 1.39 KB
/
.oxlintrc.json
File metadata and controls
53 lines (53 loc) · 1.39 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["typescript", "import", "promise", "unicorn", "node"],
"extends": ["./node_modules/@kazupon/eslint-plugin/oxlint/recommended.json"],
"overrides": [
{
"files": ["**/*.{test,spec}.{ts,tsx}"],
"plugins": ["vitest"]
},
{
"files": ["**/*.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"],
"rules": {
"no-unused-expressions": "off",
"@typescript-eslint/unbound-method": "off",
// disalbe for now, will enable later
"@kazupon/enforce-header-comment": "off",
// disalbe for now, will enable later
"@kazupon/prefer-scope-on-tag-comment": "off",
// disalbe for now, will enable later
"@kazupon/no-tag-comments": [
"off",
{
"tags": ["TODO", "FIXME", "BUG"]
}
]
}
}
],
"ignorePatterns": [
"**/dist",
"**/fixtures",
"**/.vitepress",
"**/tsconfig*.json",
"**/coverage",
"**/examples",
"temp/**",
".vscode/**/*.json",
"CHANGELOG.md",
".github/FUNDING.yml",
"packages/*/vite.config.ts",
"packages/*/index.js",
"packages/vue-i18n/src/vue.d.ts",
"packages/vue-i18n-core/petite.js",
"docs/api/**/*.md",
"docs/zh/api/**/*.md",
"docs/jp/api/**/*.md",
"shim.d.ts",
".oxlintrc.json",
"scripts/api/*.js",
".claude",
".notes"
]
}