1{
2 "$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
3 "vcs": {
4 "enabled": true,
5 "clientKind": "git",
6 "useIgnoreFile": true
7 },
8 "files": {
9 "ignoreUnknown": false
10 },
11 "formatter": {
12 "enabled": true,
13 "indentStyle": "space",
14 "indentWidth": 2
15 },
16 "linter": {
17 "enabled": true,
18 "rules": {
19 "recommended": true,
20 "suspicious": {
21 "noExplicitAny": "off",
22 "noTemplateCurlyInString": "off"
23 },
24 "complexity": {
25 "useLiteralKeys": "off"
26 },
27 "style": {
28 "noParameterAssign": "off",
29 "useTemplate": "off",
30 "noNonNullAssertion": "off"
31 }
32 }
33 },
34 "javascript": {
35 "formatter": {
36 "quoteStyle": "double",
37 "semicolons": "always"
38 }
39 },
40 "assist": {
41 "enabled": true,
42 "actions": {
43 "source": {
44 "organizeImports": "on"
45 }
46 }
47 }
48}