Skip to content

Commit 8457d74

Browse files
committed
feat: change linter and formatter
1 parent c0b8d74 commit 8457d74

File tree

4 files changed

+54
-1286
lines changed

4 files changed

+54
-1286
lines changed

biome.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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": 100,
10+
"attributePosition": "auto"
11+
},
12+
"organizeImports": {
13+
"enabled": true
14+
},
15+
"linter": {
16+
"enabled": true,
17+
"rules": {
18+
"recommended": true
19+
}
20+
},
21+
"javascript": {
22+
"formatter": {
23+
"quoteStyle": "single",
24+
"jsxQuoteStyle": "double",
25+
"quoteProperties": "asNeeded",
26+
"trailingCommas": "es5",
27+
"semicolons": "always",
28+
"arrowParentheses": "asNeeded",
29+
"bracketSpacing": true,
30+
"bracketSameLine": false
31+
}
32+
},
33+
"files": {
34+
"ignore": [
35+
"node_modules",
36+
".next",
37+
".git",
38+
"dist",
39+
"build",
40+
"out",
41+
"coverage",
42+
"*.log",
43+
".env*",
44+
".DS_Store",
45+
".vscode",
46+
"*.md",
47+
"eslint.config.js"
48+
]
49+
}
50+
}

0 commit comments

Comments
 (0)