-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbiome.json
More file actions
100 lines (100 loc) · 3.13 KB
/
biome.json
File metadata and controls
100 lines (100 loc) · 3.13 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"files": {
"includes": ["src/**/*{js,ts}"]
},
"formatter": {
"indentStyle": "space"
},
"linter": {
"rules": {
"complexity": {
"noEmptyTypeParameters": "warn",
"noExcessiveNestedTestSuites": "warn",
"noForEach": "warn",
"noImplicitCoercions": "warn",
"noUselessStringConcat": "warn",
"useWhile": "warn"
},
"correctness": {
"noNestedComponentDefinitions": "warn",
"noSolidDestructuredProps": "warn",
"noUndeclaredDependencies": "warn",
"noUndeclaredVariables": "warn",
"useSingleJsDocAsterisk": "warn",
"useUniqueElementIds": "warn"
},
"performance": {
"noAwaitInLoops": "warn",
"noBarrelFile": "warn",
"noDelete": "warn",
"noReExportAll": "warn"
},
"style": {
"noCommonJs": "warn",
"noDoneCallback": "warn",
"noEnum": "warn",
"noImplicitBoolean": "warn",
"noInferrableTypes": "warn",
"noNamespace": "warn",
"noNegationElse": "warn",
"noNestedTernary": "warn",
"noParameterAssign": "warn",
"noParameterProperties": "warn",
"noProcessEnv": "warn",
"noRestrictedGlobals": "warn",
"noRestrictedImports": "warn",
"noRestrictedTypes": "warn",
"noShoutyConstants": "warn",
"noSubstr": "warn",
"noUnusedTemplateLiteral": "warn",
"noYodaExpression": "warn",
"useAsConstAssertion": "warn",
"useBlockStatements": "warn",
"useConsistentArrayType": {
"options": {
"syntax": "shorthand"
}
},
"useConsistentBuiltinInstantiation": "warn",
"useConsistentMemberAccessibility": "warn",
"useConsistentObjectDefinitions": "warn",
"useConsistentTypeDefinitions": "warn",
"useDefaultParameterLast": "warn",
"useDefaultSwitchClause": "warn",
"useEnumInitializers": "warn",
"useExplicitLengthCheck": "warn",
"useFilenamingConvention": "warn",
"useForOf": "warn",
"useFragmentSyntax": "warn",
"useGroupedAccessorPairs": "warn",
"useNodeAssertStrict": "warn",
"useNumberNamespace": "warn",
"useObjectSpread": "warn",
"useReadonlyClassProperties": "warn",
"useSelfClosingElements": "warn",
"useSingleVarDeclarator": "warn",
"useSymbolDescription": "warn",
"useThrowNewError": "warn",
"useThrowOnlyError": "warn",
"useTrimStartEnd": "warn",
"useUnifiedTypeSignatures": "warn"
},
"suspicious": {
"noAlert": "warn",
"noBitwiseOperators": "warn",
"noConstantBinaryExpressions": "warn",
"noEmptyBlockStatements": "warn",
"noEvolvingTypes": "warn",
"noMisplacedAssertion": "warn",
"noUnassignedVariables": "warn",
"noVar": "warn",
"useAwait": "warn",
"useErrorMessage": "warn",
"useGuardForIn": "warn",
"useNumberToFixedDigitsArgument": "warn",
"useStaticResponseMethods": "warn",
"useStrictMode": "warn"
}
}
}
}