🏷️ Search for custom tailnet name offers with keywords.
1{
2 "$schema": "https://biomejs.dev/schemas/2.2.2/schema.json",
3 "vcs": {
4 "enabled": false,
5 "clientKind": "git",
6 "useIgnoreFile": false
7 },
8 "files": {
9 "includes": [
10 "entrypoints/**/*",
11 "handlers/**/*",
12 "helpers/**/*",
13 "types/**/*",
14 "biome.json",
15 "config.ts",
16 "tailwind.config.ts",
17 "tsconfig.json",
18 "wxt.config.ts"
19 ],
20 "ignoreUnknown": false
21 },
22 "formatter": {
23 "enabled": true,
24 "indentStyle": "tab"
25 },
26 "linter": {
27 "enabled": true,
28 "rules": {
29 "recommended": true,
30 "suspicious": {
31 "noExplicitAny": "error"
32 }
33 }
34 },
35 "javascript": {
36 "formatter": {
37 "quoteStyle": "single"
38 }
39 },
40 "assist": {
41 "enabled": true,
42 "actions": {
43 "source": {
44 "organizeImports": "on"
45 }
46 }
47 }
48}