Skip to content

Commit 54613b4

Browse files
test fix oxlint onfig
1 parent 4393f8f commit 54613b4

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

.oxlintrc.json

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,14 @@
77
"style": "error",
88
"restriction": "error"
99
},
10-
"plugins": ["import", "node", "oxc", "promise", "unicorn", "vitest"],
10+
"plugins": [
11+
"import",
12+
"node",
13+
"oxc",
14+
"promise",
15+
"unicorn",
16+
"vitest"
17+
],
1118
"rules": {
1219
"unicorn/filename-case": [
1320
"error",
@@ -26,10 +33,17 @@
2633
},
2734
"overrides": [
2835
{
29-
"files": ["**/components/*"],
36+
"files": [
37+
"**/components/*"
38+
],
3039
"rules": {
31-
"unicorn/filename-case": "PascalCase"
40+
"unicorn/filename-case": [
41+
"error",
42+
{
43+
"case": "PascalCase"
44+
}
45+
]
3246
}
3347
}
3448
]
35-
}
49+
}

0 commit comments

Comments
 (0)