-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbiome.json
More file actions
83 lines (83 loc) · 1.72 KB
/
biome.json
File metadata and controls
83 lines (83 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"$schema": "https://next.biomejs.dev/schemas/2.0.0-beta/schema.json",
"assist": {
"actions": {
"source": {
"organizeImports": "on",
"useSortedKeys": "off"
}
},
"enabled": true
},
"css": {
"formatter": {
"quoteStyle": "single"
}
},
"files": {
"includes": ["**", "!package.json"]
},
"formatter": {
"attributePosition": "auto",
"bracketSpacing": true,
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 80
},
"html": {
"formatter": {
"enabled": true
}
},
"javascript": {
"formatter": {
"arrowParentheses": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"quoteProperties": "asNeeded",
"quoteStyle": "single",
"semicolons": "always",
"trailingCommas": "all"
}
},
"linter": {
"enabled": true,
"rules": {
"complexity": {
"noBannedTypes": "error",
"noExcessiveCognitiveComplexity": {
"level": "error",
"options": {
"maxAllowedComplexity": 20
}
},
"useOptionalChain": "error"
},
"correctness": {
"noConstAssign": "error",
"noConstantCondition": "error"
},
"performance": {
"noAccumulatingSpread": "error"
},
"recommended": false,
"style": {
"noYodaExpression": "error",
"useConst": "error"
},
"suspicious": {
"noDuplicateObjectKeys": "error",
"noGlobalAssign": "error",
"useIsArray": "error"
}
}
},
"vcs": {
"clientKind": "git",
"defaultBranch": "main",
"enabled": true
}
}