Skip to content

Commit bc8a88c

Browse files
committed
chore(format): add biome config for IDE
1 parent 648cbe2 commit bc8a88c

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

biome.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3+
"formatter": {
4+
"enabled": true,
5+
"formatWithErrors": false,
6+
"indentStyle": "space",
7+
"indentWidth": 2,
8+
"lineEnding": "lf",
9+
"lineWidth": 80,
10+
"attributePosition": "auto",
11+
"ignore": ["**/CHANGELOG.md", "**/DEPENDENCIES.md"]
12+
},
13+
"organizeImports": {
14+
"enabled": true
15+
},
16+
"linter": {
17+
"enabled": true
18+
},
19+
"javascript": {
20+
"formatter": {
21+
"jsxQuoteStyle": "double",
22+
"quoteProperties": "asNeeded",
23+
"trailingCommas": "all",
24+
"semicolons": "always",
25+
"arrowParentheses": "asNeeded",
26+
"bracketSpacing": true,
27+
"bracketSameLine": false,
28+
"quoteStyle": "single",
29+
"attributePosition": "auto"
30+
}
31+
}
32+
}

0 commit comments

Comments
 (0)