Skip to content

Commit e08f762

Browse files
committed
Updated Biome configuration.
Temporarily turned off lint/formatting on test files.
1 parent 07b91d6 commit e08f762

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

biome.json

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
},
2525
"javascript": {
2626
"formatter": {
27-
"quoteStyle": "single"
27+
"quoteStyle": "single",
28+
"arrowParentheses": "asNeeded"
2829
}
2930
},
3031
"assist": {
@@ -34,5 +35,24 @@
3435
"organizeImports": "on"
3536
}
3637
}
37-
}
38+
},
39+
40+
"overrides": [
41+
{
42+
"includes": ["test/**/*.js"],
43+
"javascript": {
44+
"formatter": {
45+
"enabled": false
46+
}
47+
},
48+
"linter": {
49+
"enabled": false,
50+
"rules": {
51+
"complexity": {
52+
"useArrowFunction": "off"
53+
}
54+
}
55+
}
56+
}
57+
]
3858
}

0 commit comments

Comments
 (0)