@hyoretsu/configs 1.2.15 → 1.2.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/biome/elysia.json +166 -0
- package/package.json +1 -1
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
{
|
|
2
|
+
"assist": {
|
|
3
|
+
"actions": {
|
|
4
|
+
"source": {
|
|
5
|
+
"organizeImports": "on",
|
|
6
|
+
"useSortedAttributes": "on",
|
|
7
|
+
"useSortedKeys": "on",
|
|
8
|
+
"useSortedProperties": "on"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"includes": [
|
|
12
|
+
"**",
|
|
13
|
+
"!**/package.json"
|
|
14
|
+
]
|
|
15
|
+
},
|
|
16
|
+
"css": {
|
|
17
|
+
"parser": {
|
|
18
|
+
"cssModules": true,
|
|
19
|
+
"tailwindDirectives": true
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"files": {
|
|
23
|
+
"ignoreUnknown": true,
|
|
24
|
+
"includes": [
|
|
25
|
+
"**",
|
|
26
|
+
"!**/public",
|
|
27
|
+
"!**/*.gen.ts",
|
|
28
|
+
"!**/*.min.js"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
"formatter": {
|
|
32
|
+
"formatWithErrors": false,
|
|
33
|
+
"lineWidth": 110,
|
|
34
|
+
"useEditorconfig": true
|
|
35
|
+
},
|
|
36
|
+
"javascript": {
|
|
37
|
+
"formatter": {
|
|
38
|
+
"arrowParentheses": "asNeeded",
|
|
39
|
+
"lineEnding": "lf",
|
|
40
|
+
"quoteStyle": "double",
|
|
41
|
+
"semicolons": "always",
|
|
42
|
+
"trailingCommas": "all"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"linter": {
|
|
46
|
+
"rules": {
|
|
47
|
+
"a11y": {
|
|
48
|
+
"noStaticElementInteractions": "info",
|
|
49
|
+
"noSvgWithoutTitle": "warn",
|
|
50
|
+
"useAltText": "warn",
|
|
51
|
+
"useButtonType": "warn",
|
|
52
|
+
"useHtmlLang": "warn",
|
|
53
|
+
"useKeyWithClickEvents": "off"
|
|
54
|
+
},
|
|
55
|
+
"complexity": {
|
|
56
|
+
"noBannedTypes": "warn",
|
|
57
|
+
"noForEach": "off",
|
|
58
|
+
"noImportantStyles": "off",
|
|
59
|
+
"noStaticOnlyClass": "off"
|
|
60
|
+
},
|
|
61
|
+
"correctness": {
|
|
62
|
+
"noUnusedFunctionParameters": {
|
|
63
|
+
"fix": "none",
|
|
64
|
+
"level": "warn",
|
|
65
|
+
"options": {
|
|
66
|
+
"ignoreRestSiblings": true
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"noUnusedImports": {
|
|
70
|
+
"fix": "safe",
|
|
71
|
+
"level": "error"
|
|
72
|
+
},
|
|
73
|
+
"noUnusedPrivateClassMembers": "warn",
|
|
74
|
+
"noUnusedVariables": {
|
|
75
|
+
"fix": "none",
|
|
76
|
+
"level": "warn",
|
|
77
|
+
"options": {
|
|
78
|
+
"ignoreRestSiblings": true
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"useHookAtTopLevel": "off",
|
|
82
|
+
"useUniqueElementIds": "warn"
|
|
83
|
+
},
|
|
84
|
+
"nursery": {
|
|
85
|
+
"useSortedClasses": {
|
|
86
|
+
"fix": "safe",
|
|
87
|
+
"level": "warn",
|
|
88
|
+
"options": {
|
|
89
|
+
"attributes": [
|
|
90
|
+
"classList"
|
|
91
|
+
],
|
|
92
|
+
"functions": [
|
|
93
|
+
"cn",
|
|
94
|
+
"clsx",
|
|
95
|
+
"cva",
|
|
96
|
+
"tw"
|
|
97
|
+
]
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"security": {
|
|
102
|
+
"noDangerouslySetInnerHtml": "warn"
|
|
103
|
+
},
|
|
104
|
+
"style": {
|
|
105
|
+
"noDoneCallback": "error",
|
|
106
|
+
"noInferrableTypes": "error",
|
|
107
|
+
"noNonNullAssertion": "off",
|
|
108
|
+
"noParameterAssign": "warn",
|
|
109
|
+
"noUnusedTemplateLiteral": "error",
|
|
110
|
+
"noUselessElse": "error",
|
|
111
|
+
"useAsConstAssertion": "error",
|
|
112
|
+
"useConsistentArrayType": "error",
|
|
113
|
+
"useConsistentObjectDefinitions": {
|
|
114
|
+
"level": "error",
|
|
115
|
+
"options": {
|
|
116
|
+
"syntax": "shorthand"
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
"useConsistentTypeDefinitions": {
|
|
120
|
+
"fix": "safe",
|
|
121
|
+
"level": "warn"
|
|
122
|
+
},
|
|
123
|
+
"useConst": "warn",
|
|
124
|
+
"useEnumInitializers": "off",
|
|
125
|
+
"useForOf": "error",
|
|
126
|
+
"useImportType": "error",
|
|
127
|
+
"useNodejsImportProtocol": {
|
|
128
|
+
"fix": "safe",
|
|
129
|
+
"level": "warn"
|
|
130
|
+
},
|
|
131
|
+
"useNumberNamespace": "error",
|
|
132
|
+
"useSelfClosingElements": "error",
|
|
133
|
+
"useSingleVarDeclarator": "off",
|
|
134
|
+
"useTemplate": "warn"
|
|
135
|
+
},
|
|
136
|
+
"suspicious": {
|
|
137
|
+
"noArrayIndexKey": "warn",
|
|
138
|
+
"noEmptyInterface": "warn",
|
|
139
|
+
"noExplicitAny": "warn",
|
|
140
|
+
"noMisplacedAssertion": "error",
|
|
141
|
+
"noShadowRestrictedNames": "warn",
|
|
142
|
+
"noSkippedTests": "error",
|
|
143
|
+
"noThenProperty": "off",
|
|
144
|
+
"noTsIgnore": {
|
|
145
|
+
"fix": "none",
|
|
146
|
+
"level": "warn"
|
|
147
|
+
},
|
|
148
|
+
"noUnknownAtRules": {
|
|
149
|
+
"level": "error",
|
|
150
|
+
"options": {
|
|
151
|
+
"ignore": [
|
|
152
|
+
"tailwind"
|
|
153
|
+
]
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"useIterableCallbackReturn": "info"
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"root": false,
|
|
161
|
+
"vcs": {
|
|
162
|
+
"clientKind": "git",
|
|
163
|
+
"enabled": true,
|
|
164
|
+
"useIgnoreFile": true
|
|
165
|
+
}
|
|
166
|
+
}
|