packages/cli/biome.json 556 B raw
1
{
2
	"$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
3
	"vcs": {
4
		"enabled": true,
5
		"clientKind": "git",
6
		"useIgnoreFile": true
7
	},
8
	"files": {
9
		"includes": ["**", "!!**/dist"]
10
	},
11
	"formatter": {
12
		"enabled": true,
13
		"indentStyle": "tab"
14
	},
15
	"linter": {
16
		"enabled": true,
17
		"rules": {
18
			"recommended": true,
19
			"style": {
20
				"noNonNullAssertion": "off"
21
			}
22
		}
23
	},
24
	"javascript": {
25
		"formatter": {
26
			"quoteStyle": "double"
27
		}
28
	},
29
	"assist": {
30
		"enabled": true,
31
		"actions": {
32
			"source": {
33
				"organizeImports": "on"
34
			}
35
		}
36
	}
37
}