The smokesignal.events web application
1{
2 "$schema": "https://biomejs.dev/schemas/2.0.0/schema.json",
3 "assist": {
4 "actions": {
5 "source": {
6 "organizeImports": "on"
7 }
8 }
9 },
10 "formatter": {
11 "enabled": true,
12 "indentStyle": "space",
13 "indentWidth": 2,
14 "lineWidth": 100
15 },
16 "javascript": {
17 "formatter": {
18 "quoteStyle": "single",
19 "semicolons": "asNeeded",
20 "trailingCommas": "es5",
21 "arrowParentheses": "always"
22 }
23 },
24 "css": {
25 "formatter": {
26 "enabled": true,
27 "indentStyle": "space",
28 "indentWidth": 2,
29 "lineWidth": 100
30 }
31 },
32 "linter": { "enabled": false },
33 "files": {
34 "includes": ["src/**/*.ts", "styles/**/*.css"]
35 }
36}