Skip to content

Commit 12bddc4

Browse files
committed
Enhance package.json: add lint script and update devDependencies
1 parent ba3d886 commit 12bddc4

File tree

4 files changed

+949
-4
lines changed

4 files changed

+949
-4
lines changed

biome.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"files": {
3+
"ignore": ["lib"]
4+
},
5+
"linter": {
6+
"enabled": true,
7+
"rules": {
8+
"recommended": true,
9+
"suspicious": {
10+
"noExplicitAny": "off",
11+
"noAssignInExpressions": "off"
12+
},
13+
"style": {
14+
"noNonNullAssertion": "off"
15+
},
16+
"a11y": {
17+
"useValidAnchor": "off"
18+
},
19+
"performance": {
20+
"noDelete": "off"
21+
}
22+
}
23+
},
24+
"formatter": {
25+
"enabled": true,
26+
"formatWithErrors": false,
27+
"indentStyle": "space",
28+
"indentWidth": 2,
29+
"lineEnding": "lf",
30+
"lineWidth": 80,
31+
"attributePosition": "auto"
32+
},
33+
"javascript": {
34+
"formatter": {
35+
"quoteStyle": "single"
36+
}
37+
}
38+
}

0 commit comments

Comments
 (0)