Skip to content

Commit fb9cc0b

Browse files
committed
chore: add Biome config
1 parent 441c9d4 commit fb9cc0b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

biome.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/2.3.3/schema.json",
3+
"formatter": {
4+
"enabled": false
5+
},
6+
"linter": {
7+
"enabled": true,
8+
"rules": {
9+
"suspicious": {
10+
"noThenProperty": "off",
11+
"noExplicitAny": "off"
12+
}
13+
}
14+
},
15+
"files": {
16+
"includes": [
17+
"**",
18+
"!**/packages/types",
19+
"!**/packages/artillery-engine-playwright/test/**/*.ts",
20+
"!**/examples/browser-playwright-reuse-typescript/**/*.ts",
21+
"!**/node_modules",
22+
"!**/dist",
23+
"!**/build"
24+
]
25+
}
26+
}

0 commit comments

Comments
 (0)