this repo has no description
1{
2 "$schema": "https://biomejs.dev/schemas/2.2.2/schema.json",
3 "vcs": {
4 "enabled": true,
5 "clientKind": "git",
6 "useIgnoreFile": true
7 },
8 "files": {
9 "includes": [
10 "src/**/*.{js,jsx,ts,tsx,css}",
11 "*.{js,jsx,ts,tsx,json,jsonc}",
12 "scripts/**/*.js",
13 "!wrangler.jsonc",
14 "!i18n-volunteers.json"
15 ]
16 },
17 "formatter": {
18 "indentStyle": "space"
19 },
20 "linter": {
21 "enabled": false
22 },
23 "javascript": {
24 "formatter": {
25 "quoteStyle": "single"
26 }
27 },
28 "css": {
29 "formatter": {
30 "quoteStyle": "single"
31 }
32 },
33 "assist": {
34 "actions": {
35 "source": {
36 "organizeImports": {
37 "level": "on",
38 "options": {
39 "groups": [
40 "**/*.css",
41 ":BLANK_LINE:",
42 "./polyfills",
43 ":BLANK_LINE:",
44 [":NODE:", ":BUN:"],
45 ":BLANK_LINE:",
46 [":PACKAGE:", ":PACKAGE_WITH_PROTOCOL:"],
47 ":BLANK_LINE:",
48 "**/assets/**",
49 ":BLANK_LINE:",
50 "../**",
51 ":BLANK_LINE:",
52 ["./**", "./"]
53 ]
54 }
55 }
56 }
57 }
58 }
59}