Skip to content

Commit 34a9421

Browse files
committed
chore: wip
1 parent 19520c8 commit 34a9421

File tree

1 file changed

+39
-21
lines changed

1 file changed

+39
-21
lines changed

biome.json

Lines changed: 39 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,6 @@
33
"organizeImports": {
44
"enabled": true
55
},
6-
"files": {
7-
"include": ["*.{js,ts,stx,vue,html,css,json,yml,yaml,md}"],
8-
"ignore": [
9-
"**/node_modules",
10-
"**/cdk.out",
11-
"**/dist",
12-
"**/*out*",
13-
"CHANGELOG.md"
14-
]
15-
},
166
"overrides": [
177
{
188
"include": [".vscode/**"],
@@ -24,25 +14,53 @@
2414
}
2515
}
2616
],
27-
"formatter": {
28-
"enabled": true,
29-
"formatWithErrors": false,
30-
"ignore": [],
31-
"attributePosition": "auto",
32-
"indentStyle": "space",
33-
"indentWidth": 2,
34-
"lineEnding": "lf",
35-
"lineWidth": 80
17+
"javascript": {
18+
"formatter": {
19+
"jsxQuoteStyle": "double",
20+
"quoteProperties": "asNeeded",
21+
"trailingComma": "all",
22+
"semicolons": "asNeeded",
23+
"arrowParentheses": "always",
24+
"bracketSpacing": true,
25+
"bracketSameLine": false,
26+
"quoteStyle": "single",
27+
"attributePosition": "auto",
28+
"indentStyle": "space",
29+
"indentWidth": 2,
30+
"lineEnding": "lf"
31+
}
32+
},
33+
"json": {
34+
"formatter": {
35+
"indentStyle": "space",
36+
"indentWidth": 2,
37+
"lineEnding": "lf"
38+
}
3639
},
3740
"linter": {
3841
"enabled": true,
3942
"rules": {
40-
"recommended": true
43+
"recommended": true,
44+
"style": {
45+
"noParameterAssign": "off",
46+
"noUnusedTemplateLiteral": "off"
47+
},
48+
"complexity": {
49+
"noForEach": "off",
50+
"noStaticOnlyClass": "off"
51+
},
52+
"suspicious": {
53+
"noExplicitAny": "off"
54+
}
4155
}
4256
},
57+
"files": {
58+
"ignore": ["storage/framework/types/*", "storage/framework/cache/*"]
59+
},
4360
"vcs": {
4461
"enabled": true,
4562
"clientKind": "git",
46-
"useIgnoreFile": true
63+
"useIgnoreFile": true,
64+
"defaultBranch": "main"
4765
}
4866
}

0 commit comments

Comments
 (0)