-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbiome.json
More file actions
137 lines (137 loc) · 3.69 KB
/
Copy pathbiome.json
File metadata and controls
137 lines (137 loc) · 3.69 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"$schema": "https://biomejs.dev/schemas/2.5.5/schema.json",
"extends": [
"ultracite/biome/core",
"ultracite/biome/react",
"ultracite/biome/astro",
"ultracite/biome/vitest"
],
"vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true },
"files": {
"ignoreUnknown": true,
"includes": [
"!**/.next",
"!**/.open-next",
"!**/.wrangler",
"!**/out",
"!**/dist",
"!**/build",
"!**/node_modules",
"!**/.astro",
"!**/next-env.d.ts",
"!**/cloudflare-env.d.ts",
"!**/pnpm-lock.yaml",
"!**/package-lock.json",
"!**/tsconfig.tsbuildinfo",
"!**/public/catalog.json",
"!**/public/catalog-summary.json",
"!**/design.html",
"!**/src/app/icon.svg",
"!**/src/app/globals.css",
"!**/stations.json",
"!**/*.astro"
]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100,
"lineEnding": "lf"
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"semicolons": "always",
"trailingCommas": "es5",
"jsxQuoteStyle": "double"
}
},
"css": {
"parser": {
"tailwindDirectives": true
}
},
"html": { "formatter": { "enabled": false } },
"json": { "formatter": { "enabled": false } },
"linter": {
"enabled": true,
"rules": {
"preset": "recommended",
"a11y": {
"noNoninteractiveElementInteractions": "off",
"noSvgWithoutTitle": "off",
"useButtonType": "off",
"useKeyWithClickEvents": "off",
"noStaticElementInteractions": "off",
"useSemanticElements": "off",
"useAriaPropsSupportedByRole": "off"
},
"suspicious": {
"noAlert": "off",
"noEmptyBlockStatements": "off",
"noEqualsToNull": "off",
"noLeakedRender": "off",
"noReactForwardRef": "off",
"noShadow": "off",
"noShadowRestrictedNames": "off",
"noUnnecessaryConditions": "off",
"useArraySortCompare": "off",
"useAwait": "off"
},
"complexity": {
"noExcessiveCognitiveComplexity": "off",
"noForEach": "off",
"noUselessStringConcat": "off",
"noUselessUndefined": "off",
"noVoid": "off",
"useSimplifiedLogicExpression": "off"
},
"nursery": { "useSortedClasses": "off" },
"performance": {
"noAwaitInLoops": "off",
"noDelete": "off",
"noJsxPropsBind": "off",
"useTopLevelRegex": "off"
},
"style": {
"noIncrementDecrement": "off",
"noNegationElse": "off",
"noNestedTernary": "off",
"noNonNullAssertion": "off",
"noUnusedTemplateLiteral": "off",
"useAtIndex": "off",
"useBlockStatements": "off",
"useConsistentArrayType": "off",
"useConsistentArrowReturn": "off",
"useConsistentMethodSignatures": "off",
"useConsistentObjectDefinitions": "off",
"useConsistentTypeDefinitions": "off",
"useDefaultSwitchClause": "off",
"useDestructuring": "off",
"useErrorCause": "off",
"useFilenamingConvention": "off",
"useForOf": "off",
"useNumberNamespace": "off",
"useNumericSeparators": "off",
"useUnifiedTypeSignatures": "off"
},
"correctness": {
"noGlobalDirnameFilename": "off"
}
}
},
"assist": {
"enabled": true,
"actions": {
"source": {
"organizeImports": "off",
"useSortedAttributes": "off",
"useSortedInterfaceMembers": "off",
"useSortedKeys": "off",
"useSortedPackageJson": "off",
"useSortedProperties": "off"
}
}
}
}