@tilli-pro/biome 0.6.0 → 0.8.0

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.
Files changed (3) hide show
  1. package/config.json +366 -0
  2. package/package.json +5 -5
  3. package/biome.json +0 -337
package/config.json ADDED
@@ -0,0 +1,366 @@
1
+ {
2
+ "$schema": "https://biomejs.dev/schemas/2.3.0/schema.json",
3
+ "vcs": {
4
+ "enabled": true,
5
+ "clientKind": "git",
6
+ "useIgnoreFile": true
7
+ },
8
+ "files": {
9
+ "ignoreUnknown": false,
10
+ "maxSize": 16777216
11
+ },
12
+ "formatter": {
13
+ "enabled": true,
14
+ "formatWithErrors": false,
15
+ "indentStyle": "space",
16
+ "indentWidth": 2,
17
+ "lineEnding": "lf",
18
+ "lineWidth": 80,
19
+ "attributePosition": "auto",
20
+ "bracketSameLine": false,
21
+ "bracketSpacing": true,
22
+ "expand": "auto",
23
+ "useEditorconfig": true
24
+ },
25
+ "linter": {
26
+ "enabled": true,
27
+ "rules": {
28
+ "recommended": false,
29
+ "complexity": {
30
+ "noVoid": "off",
31
+ "noBannedTypes": "warn",
32
+ "noUselessContinue": "warn",
33
+ "noUselessTernary": "warn",
34
+ "noAdjacentSpacesInRegex": "error",
35
+ "noArguments": "error",
36
+ "noExtraBooleanCast": "error",
37
+ "noUselessCatch": "error",
38
+ "noUselessEscapeInRegex": "error",
39
+ "noUselessTypeConstraint": "error",
40
+ "noImportantStyles": "warn",
41
+ "noUselessRename": "error",
42
+ "useArrowFunction": "warn",
43
+ "useRegexLiterals": "warn",
44
+ "useWhile": "error",
45
+ "noEmptyTypeParameters": "error",
46
+ "noThisInStatic": "error",
47
+ "noStaticOnlyClass": "error",
48
+ "noUselessThisAlias": "warn",
49
+ "useSimplifiedLogicExpression": "warn",
50
+ "useDateNow": "warn",
51
+ "noImplicitCoercions": "off"
52
+ },
53
+ "correctness": {
54
+ "useYield": "warn",
55
+ "useExhaustiveDependencies": "warn",
56
+ "useHookAtTopLevel": "warn",
57
+ "useParseIntRadix": "warn",
58
+ "noUnusedImports": "warn",
59
+ "noUnusedLabels": "error",
60
+ "noUnusedPrivateClassMembers": "error",
61
+ "noUnusedVariables": "error",
62
+ "noConstAssign": "error",
63
+ "noConstantCondition": "error",
64
+ "noEmptyCharacterClassInRegex": "error",
65
+ "noEmptyPattern": "error",
66
+ "noGlobalObjectCalls": "error",
67
+ "noInvalidBuiltinInstantiation": "error",
68
+ "noInvalidConstructorSuper": "error",
69
+ "noNonoctalDecimalEscape": "error",
70
+ "noPrecisionLoss": "error",
71
+ "noSelfAssign": "error",
72
+ "noSetterReturn": "error",
73
+ "noSwitchDeclarations": "error",
74
+ "noUndeclaredVariables": {
75
+ "level": "error",
76
+ "options": {
77
+ "checkTypes": true
78
+ }
79
+ },
80
+ "noUnreachable": "error",
81
+ "noUnreachableSuper": "error",
82
+ "noUnsafeFinally": "error",
83
+ "noUnsafeOptionalChaining": "error",
84
+ "useIsNan": "error",
85
+ "useJsxKeyInIterable": "error",
86
+ "useSingleJsDocAsterisk": "error",
87
+ "useValidForDirection": "error",
88
+ "useValidTypeof": "error",
89
+ "noReactPropAssignments": "error",
90
+ "noConstructorReturn": "error",
91
+ "noInvalidGridAreas": "warn",
92
+ "noInvalidUseBeforeDeclaration": "error",
93
+ "noVoidTypeReturn": "error",
94
+ "useImageSize": "warn",
95
+ "noChildrenProp": "error"
96
+ },
97
+ "style": {
98
+ "noImplicitBoolean": "warn",
99
+ "noInferrableTypes": "error",
100
+ "noNamespace": "error",
101
+ "noUnusedTemplateLiteral": "warn",
102
+ "noYodaExpression": "error",
103
+ "useConsistentArrayType": {
104
+ "level": "error",
105
+ "options": {
106
+ "syntax": "shorthand"
107
+ }
108
+ },
109
+ "useArrayLiterals": "error",
110
+ "useAsConstAssertion": "error",
111
+ "useConsistentCurlyBraces": "warn",
112
+ "useConst": "warn",
113
+ "useBlockStatements": "off",
114
+ "useDeprecatedReason": "error",
115
+ "useExportType": "warn",
116
+ "useFragmentSyntax": "error",
117
+ "useImportType": "error",
118
+ "useNodejsImportProtocol": "error",
119
+ "useShorthandAssign": "warn",
120
+ "useTemplate": "error",
121
+ "useThrowNewError": "warn",
122
+ "useObjectSpread": "error",
123
+ "useGroupedAccessorPairs": "error",
124
+ "useNamingConvention": "warn",
125
+ "useReadonlyClassProperties": "warn",
126
+ "noDefaultExport": "warn",
127
+ "noDoneCallback": "warn",
128
+ "noNonNullAssertion": "warn",
129
+ "useThrowOnlyError": "warn",
130
+ "noSubstr": "warn",
131
+ "useDefaultSwitchClause": "warn",
132
+ "useReactFunctionComponents": "warn"
133
+ },
134
+ "suspicious": {
135
+ "noArrayIndexKey": "warn",
136
+ "noAsyncPromiseExecutor": "error",
137
+ "noCatchAssign": "error",
138
+ "noClassAssign": "error",
139
+ "noCommentText": "error",
140
+ "noCompareNegZero": "error",
141
+ "noConstantBinaryExpressions": "warn",
142
+ "noControlCharactersInRegex": "error",
143
+ "noDoubleEquals": "error",
144
+ "noDebugger": "error",
145
+ "noDuplicateCase": "error",
146
+ "noDuplicateClassMembers": "error",
147
+ "noDuplicateElseIf": "error",
148
+ "noDuplicateJsxProps": "error",
149
+ "noDuplicateObjectKeys": "warn",
150
+ "noDuplicateParameters": "error",
151
+ "noEmptyBlockStatements": "error",
152
+ "noExplicitAny": "error",
153
+ "noExtraNonNullAssertion": "error",
154
+ "noFallthroughSwitchClause": "error",
155
+ "noFunctionAssign": "error",
156
+ "noGlobalAssign": "error",
157
+ "noImplicitAnyLet": "warn",
158
+ "noImportAssign": "error",
159
+ "noIrregularWhitespace": "error",
160
+ "noMisleadingCharacterClass": "error",
161
+ "noMisleadingInstantiator": "error",
162
+ "noPrototypeBuiltins": "error",
163
+ "noRedeclare": "error",
164
+ "noShadowRestrictedNames": "error",
165
+ "noSparseArray": "error",
166
+ "noSuspiciousSemicolonInJsx": "warn",
167
+ "noUnsafeDeclarationMerging": "error",
168
+ "noUnsafeNegation": "error",
169
+ "noVar": "error",
170
+ "noWith": "error",
171
+ "useGetterReturn": "error",
172
+ "useIsArray": "warn",
173
+ "noUnassignedVariables": "warn",
174
+ "noGlobalIsNan": "error",
175
+ "noGlobalIsFinite": "error",
176
+ "useErrorMessage": "warn"
177
+ },
178
+ "a11y": {
179
+ "recommended": true,
180
+ "noRedundantAlt": "error",
181
+ "noStaticElementInteractions": "error",
182
+ "useAltText": "error",
183
+ "useValidAnchor": "warn",
184
+ "useValidLang": "error"
185
+ },
186
+ "performance": {
187
+ "noAwaitInLoops": "warn",
188
+ "useTopLevelRegex": "info",
189
+ "noAccumulatingSpread": "warn",
190
+ "noDelete": "warn"
191
+ },
192
+ "security": {
193
+ "noBlankTarget": "error",
194
+ "noDangerouslySetInnerHtmlWithChildren": "error",
195
+ "noGlobalEval": "error",
196
+ "noDangerouslySetInnerHtml": "warn",
197
+ "noSecrets": "warn"
198
+ },
199
+ "nursery": {
200
+ "noFloatingPromises": "warn",
201
+ "useSortedClasses": "warn",
202
+ "noUselessUndefined": "warn",
203
+ "useExhaustiveSwitchCases": "warn",
204
+ "noImportCycles": "error",
205
+ "noDeprecatedImports": "warn",
206
+ "noNextAsyncClientComponent": "error",
207
+ "noShadow": "warn",
208
+ "noMisusedPromises": "warn",
209
+ "noUnnecessaryConditions": "warn",
210
+ "noUnresolvedImports": "off",
211
+ "noUselessCatchBinding": "warn"
212
+ }
213
+ }
214
+ },
215
+ "javascript": {
216
+ "formatter": {
217
+ "jsxQuoteStyle": "double",
218
+ "quoteProperties": "asNeeded",
219
+ "trailingCommas": "all",
220
+ "semicolons": "always",
221
+ "arrowParentheses": "always",
222
+ "bracketSameLine": false,
223
+ "quoteStyle": "double",
224
+ "attributePosition": "auto",
225
+ "bracketSpacing": true,
226
+ "indentStyle": "space",
227
+ "indentWidth": 2,
228
+ "lineEnding": "lf",
229
+ "lineWidth": 80,
230
+ "enabled": true,
231
+ "expand": "auto",
232
+ "operatorLinebreak": "after"
233
+ },
234
+ "globals": ["exports", "React", "JSX"],
235
+ "linter": {
236
+ "enabled": true
237
+ },
238
+ "parser": {
239
+ "jsxEverywhere": false,
240
+ "unsafeParameterDecoratorsEnabled": true,
241
+ "gritMetavariables": true
242
+ },
243
+ "assist": {
244
+ "enabled": true
245
+ },
246
+ "jsxRuntime": "transparent"
247
+ },
248
+ "html": {
249
+ "parser": {
250
+ "interpolation": true
251
+ },
252
+ "formatter": {
253
+ "enabled": true,
254
+ "selfCloseVoidElements": "always",
255
+ "lineEnding": "lf",
256
+ "lineWidth": 80,
257
+ "indentStyle": "space",
258
+ "indentWidth": 2,
259
+ "whitespaceSensitivity": "css"
260
+ }
261
+ },
262
+ "css": {
263
+ "formatter": {
264
+ "enabled": true,
265
+ "lineWidth": 80,
266
+ "indentStyle": "space",
267
+ "indentWidth": 2,
268
+ "lineEnding": "lf",
269
+ "quoteStyle": "double"
270
+ },
271
+ "linter": {
272
+ "enabled": true
273
+ },
274
+ "assist": {
275
+ "enabled": true
276
+ },
277
+ "parser": {
278
+ "cssModules": true,
279
+ "tailwindDirectives": true
280
+ },
281
+ "globals": []
282
+ },
283
+ "json": {
284
+ "parser": {
285
+ "allowComments": true,
286
+ "allowTrailingCommas": false
287
+ },
288
+ "assist": {
289
+ "enabled": true
290
+ },
291
+ "linter": {
292
+ "enabled": true
293
+ },
294
+ "formatter": {
295
+ "enabled": true,
296
+ "lineWidth": 80,
297
+ "indentStyle": "space",
298
+ "indentWidth": 2,
299
+ "lineEnding": "lf"
300
+ }
301
+ },
302
+ "assist": {
303
+ "enabled": true,
304
+ "actions": {
305
+ "source": {
306
+ "organizeImports": {
307
+ "level": "on",
308
+ "options": {
309
+ "identifierOrder": "natural",
310
+ "groups": [
311
+ ":URL:",
312
+ [":NODE:"],
313
+ [
314
+ "react",
315
+ "react-dom",
316
+ "react/**",
317
+ "react-dom/**",
318
+ "next",
319
+ "next/**"
320
+ ],
321
+ ["@tilli-pro/**", "@tilli-internal/**"],
322
+ ":PACKAGE:",
323
+ ":ALIAS:",
324
+ {
325
+ "type": false
326
+ },
327
+ ":PATH:",
328
+ ["**/*.css"]
329
+ ]
330
+ }
331
+ },
332
+ "useSortedAttributes": "on",
333
+ "useSortedProperties": "on",
334
+ "useSortedKeys": "off"
335
+ }
336
+ }
337
+ },
338
+ "plugins": [],
339
+ "overrides": [
340
+ {
341
+ "includes": [
342
+ "src/app/**/page.tsx",
343
+ "src/app/**/layout.tsx",
344
+ "next.config.*ts",
345
+ "next.config.*js"
346
+ ],
347
+ "linter": {
348
+ "rules": {
349
+ "style": {
350
+ "noDefaultExport": "off"
351
+ }
352
+ }
353
+ }
354
+ },
355
+ {
356
+ "includes": [
357
+ "**",
358
+ "!.*.js",
359
+ "!node_modules/",
360
+ "!dist/",
361
+ "!build/",
362
+ "!out/"
363
+ ]
364
+ }
365
+ ]
366
+ }
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@tilli-pro/biome",
3
- "version": "0.6.0",
3
+ "version": "0.8.0",
4
4
  "files": [
5
- "biome.json"
5
+ "config.json"
6
6
  ],
7
7
  "exports": {
8
- "default": "./biome.json"
8
+ "default": "./config.json"
9
9
  },
10
- "peerDependencies": {
11
- "@biomejs/biome": "latest"
10
+ "dependencies": {
11
+ "@biomejs/biome": "2.3.0"
12
12
  }
13
13
  }
package/biome.json DELETED
@@ -1,337 +0,0 @@
1
- {
2
- "$schema": "https://biomejs.dev/schemas/2.2.5/schema.json",
3
- "vcs": {
4
- "enabled": true,
5
- "clientKind": "git",
6
- "useIgnoreFile": true
7
- },
8
- "files": {
9
- "ignoreUnknown": false,
10
- "maxSize": 16777216
11
- },
12
- "formatter": {
13
- "enabled": true,
14
- "formatWithErrors": false,
15
- "indentStyle": "space",
16
- "indentWidth": 2,
17
- "lineEnding": "lf",
18
- "lineWidth": 80,
19
- "attributePosition": "auto",
20
- "bracketSameLine": false,
21
- "bracketSpacing": true,
22
- "expand": "auto",
23
- "useEditorconfig": true
24
- },
25
- "linter": {
26
- "enabled": true,
27
- "rules": {
28
- "recommended": false,
29
- "complexity": {
30
- "noVoid": "off",
31
-
32
- "noBannedTypes": "warn",
33
- "noUselessContinue": "warn",
34
- "noUselessTernary": "warn",
35
-
36
- "noAdjacentSpacesInRegex": "error",
37
- "noArguments": "error",
38
- "noExtraBooleanCast": "error",
39
- "noUselessCatch": "error",
40
- "noUselessEscapeInRegex": "error",
41
- "noUselessTypeConstraint": "error",
42
- "noImportantStyles": "warn",
43
- "noUselessRename": "error",
44
- "useArrowFunction": "warn",
45
- "useRegexLiterals": "warn",
46
- "useWhile": "error",
47
- "noEmptyTypeParameters": "error",
48
- "noThisInStatic": "error",
49
- "noStaticOnlyClass": "error",
50
- "noUselessThisAlias": "warn",
51
- "useSimplifiedLogicExpression": "warn",
52
- "useDateNow": "warn",
53
- "noImplicitCoercions": "off"
54
- },
55
- "correctness": {
56
- "useYield": "warn",
57
- "useExhaustiveDependencies": "warn",
58
- "useHookAtTopLevel": "warn",
59
- "useParseIntRadix": "warn",
60
- "noUnusedImports": "warn",
61
- "noUnusedLabels": "error",
62
- "noUnusedPrivateClassMembers": "error",
63
- "noUnusedVariables": "error",
64
- "noConstAssign": "error",
65
- "noConstantCondition": "error",
66
- "noEmptyCharacterClassInRegex": "error",
67
- "noEmptyPattern": "error",
68
- "noGlobalObjectCalls": "error",
69
- "noInvalidBuiltinInstantiation": "error",
70
- "noInvalidConstructorSuper": "error",
71
- "noNonoctalDecimalEscape": "error",
72
- "noPrecisionLoss": "error",
73
- "noSelfAssign": "error",
74
- "noSetterReturn": "error",
75
- "noSwitchDeclarations": "error",
76
- "noUndeclaredVariables": {
77
- "level": "error",
78
- "options": { "checkTypes": true }
79
- },
80
- "noUnreachable": "error",
81
- "noUnreachableSuper": "error",
82
- "noUnsafeFinally": "error",
83
- "noUnsafeOptionalChaining": "error",
84
- "useIsNan": "error",
85
- "useJsxKeyInIterable": "error",
86
- "useSingleJsDocAsterisk": "error",
87
- "useValidForDirection": "error",
88
- "useValidTypeof": "error",
89
- "noReactPropAssignments": "error",
90
- "noConstructorReturn": "error",
91
- "noInvalidGridAreas": "warn",
92
- "noInvalidUseBeforeDeclaration": "error",
93
- "noVoidTypeReturn": "error"
94
- },
95
- "style": {
96
- "noImplicitBoolean": "warn",
97
- "noInferrableTypes": "error",
98
- "noNamespace": "error",
99
- "noUnusedTemplateLiteral": "warn",
100
- "noYodaExpression": "error",
101
- "useConsistentArrayType": {
102
- "level": "error",
103
- "options": {
104
- "syntax": "shorthand"
105
- }
106
- },
107
- "useArrayLiterals": "error",
108
- "useAsConstAssertion": "error",
109
- "useConsistentCurlyBraces": "warn",
110
- "useConst": "warn",
111
- "useBlockStatements": "off",
112
- "useDeprecatedReason": "error",
113
- "useExportType": "warn",
114
- "useFragmentSyntax": "error",
115
- "useImportType": "error",
116
- "useNodejsImportProtocol": "error",
117
- "useShorthandAssign": "warn",
118
- "useTemplate": "error",
119
- "useThrowNewError": "warn",
120
- "useObjectSpread": "error",
121
- "useGroupedAccessorPairs": "error",
122
- "useNamingConvention": "warn",
123
- "useReadonlyClassProperties": "warn",
124
- "noDefaultExport": "warn",
125
- "noDoneCallback": "warn",
126
- "noNonNullAssertion": "warn",
127
- "useThrowOnlyError": "warn",
128
- "noSubstr": "warn",
129
- "useDefaultSwitchClause": "warn"
130
- },
131
- "suspicious": {
132
- "noArrayIndexKey": "warn",
133
- "noAsyncPromiseExecutor": "error",
134
- "noCatchAssign": "error",
135
- "noClassAssign": "error",
136
- "noCommentText": "error",
137
- "noCompareNegZero": "error",
138
- "noConstantBinaryExpressions": "warn",
139
- "noControlCharactersInRegex": "error",
140
- "noDoubleEquals": "error",
141
- "noDebugger": "error",
142
- "noDuplicateCase": "error",
143
- "noDuplicateClassMembers": "error",
144
- "noDuplicateElseIf": "error",
145
- "noDuplicateJsxProps": "error",
146
- "noDuplicateObjectKeys": "warn",
147
- "noDuplicateParameters": "error",
148
- "noEmptyBlockStatements": "error",
149
- "noExplicitAny": "error",
150
- "noExtraNonNullAssertion": "error",
151
- "noFallthroughSwitchClause": "error",
152
- "noFunctionAssign": "error",
153
- "noGlobalAssign": "error",
154
- "noImplicitAnyLet": "warn",
155
- "noImportAssign": "error",
156
- "noIrregularWhitespace": "error",
157
- "noMisleadingCharacterClass": "error",
158
- "noMisleadingInstantiator": "error",
159
- "noPrototypeBuiltins": "error",
160
- "noRedeclare": "error",
161
- "noShadowRestrictedNames": "error",
162
- "noSparseArray": "error",
163
- "noSuspiciousSemicolonInJsx": "warn",
164
- "noUnsafeDeclarationMerging": "error",
165
- "noUnsafeNegation": "error",
166
- "noVar": "error",
167
- "noWith": "error",
168
- "useGetterReturn": "error",
169
- "useIsArray": "warn",
170
- "noUnassignedVariables": "warn",
171
- "noGlobalIsNan": "error",
172
- "noGlobalIsFinite": "error",
173
- "useErrorMessage": "warn"
174
- },
175
- "a11y": {
176
- "recommended": true,
177
- "noRedundantAlt": "error",
178
- "noStaticElementInteractions": "error",
179
- "useAltText": "error",
180
- "useValidLang": "error"
181
- },
182
- "performance": {
183
- "noAwaitInLoops": "warn",
184
- "useTopLevelRegex": "info",
185
- "noAccumulatingSpread": "warn",
186
- "noDelete": "warn"
187
- },
188
- "security": {
189
- "noBlankTarget": "error",
190
- "noDangerouslySetInnerHtmlWithChildren": "error",
191
- "noGlobalEval": "error",
192
- "noDangerouslySetInnerHtml": "warn"
193
- },
194
- "nursery": {
195
- "noFloatingPromises": "warn",
196
- "useSortedClasses": "warn",
197
- "noUselessUndefined": "warn",
198
- "useExhaustiveSwitchCases": "warn",
199
- "noImportCycles": "error",
200
- "noDeprecatedImports": "warn",
201
- "noNextAsyncClientComponent": "error",
202
- "noSecrets": "warn",
203
- "noShadow": "warn",
204
- "noMisusedPromises": "warn",
205
- "noUnnecessaryConditions": "warn",
206
- "noUnresolvedImports": "off",
207
- "useAnchorHref": "warn",
208
- "useImageSize": "warn",
209
- "noUselessCatchBinding": "warn",
210
- "useReactFunctionComponents": "warn"
211
- }
212
- }
213
- },
214
- "javascript": {
215
- "formatter": {
216
- "jsxQuoteStyle": "double",
217
- "quoteProperties": "asNeeded",
218
- "trailingCommas": "all",
219
- "semicolons": "always",
220
- "arrowParentheses": "always",
221
- "bracketSameLine": false,
222
- "quoteStyle": "double",
223
- "attributePosition": "auto",
224
- "bracketSpacing": true,
225
- "indentStyle": "space",
226
- "indentWidth": 2,
227
- "lineEnding": "lf",
228
- "lineWidth": 80,
229
- "enabled": true,
230
- "expand": "auto",
231
- "operatorLinebreak": "after"
232
- },
233
- "globals": ["exports", "React", "JSX"],
234
- "linter": {
235
- "enabled": true
236
- },
237
- "parser": {
238
- "jsxEverywhere": false,
239
- "unsafeParameterDecoratorsEnabled": true,
240
- "gritMetavariables": true
241
- },
242
- "assist": {
243
- "enabled": true
244
- },
245
- "jsxRuntime": "transparent"
246
- },
247
- "html": {
248
- "parser": {
249
- "interpolation": true
250
- },
251
- "formatter": {
252
- "enabled": true,
253
- "selfCloseVoidElements": "always",
254
- "lineEnding": "lf",
255
- "lineWidth": 80,
256
- "indentStyle": "space",
257
- "indentWidth": 2,
258
- "whitespaceSensitivity": "css"
259
- }
260
- },
261
- "css": {
262
- "formatter": {
263
- "enabled": true,
264
- "lineWidth": 80,
265
- "indentStyle": "space",
266
- "indentWidth": 2,
267
- "lineEnding": "lf",
268
- "quoteStyle": "double"
269
- },
270
- "linter": {
271
- "enabled": true
272
- },
273
- "assist": {
274
- "enabled": true
275
- },
276
- "parser": {
277
- "cssModules": true
278
- },
279
- "globals": []
280
- },
281
- "json": {
282
- "parser": {
283
- "allowComments": true,
284
- "allowTrailingCommas": false
285
- },
286
- "assist": {
287
- "enabled": true
288
- },
289
- "linter": {
290
- "enabled": true
291
- },
292
- "formatter": {
293
- "enabled": true,
294
- "lineWidth": 80,
295
- "indentStyle": "space",
296
- "indentWidth": 2,
297
- "lineEnding": "lf"
298
- }
299
- },
300
- "assist": {
301
- "enabled": true,
302
- "actions": {
303
- "source": {
304
- "organizeImports": {
305
- "level": "on",
306
- "options": {
307
- "identifierOrder": "natural",
308
- "groups": [
309
- ":URL:",
310
- ":NODE:",
311
- ":PACKAGE:",
312
- ":ALIAS:",
313
- { "type": false },
314
- ":PATH:"
315
- ]
316
- }
317
- },
318
- "useSortedAttributes": "on",
319
- "useSortedProperties": "on",
320
- "useSortedKeys": "off"
321
- }
322
- }
323
- },
324
- "plugins": [],
325
- "overrides": [
326
- {
327
- "includes": [
328
- "**",
329
- "!.*.js",
330
- "!node_modules/",
331
- "!dist/",
332
- "!build/",
333
- "!out/"
334
- ]
335
- }
336
- ]
337
- }