@dvashim/biome-config 1.0.4 → 1.0.6
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/biome.all.recommended.json +7 -1
- package/biome.json +11 -3
- package/biome.react.recommended.json +7 -1
- package/biome.react.strict.json +13 -3
- package/package.json +4 -1
|
@@ -20,7 +20,10 @@
|
|
|
20
20
|
},
|
|
21
21
|
|
|
22
22
|
"files": {
|
|
23
|
-
"includes": [
|
|
23
|
+
"includes": [
|
|
24
|
+
"**",
|
|
25
|
+
"!!**/dist"
|
|
26
|
+
]
|
|
24
27
|
},
|
|
25
28
|
|
|
26
29
|
"formatter": {
|
|
@@ -61,6 +64,9 @@
|
|
|
61
64
|
"parser": {
|
|
62
65
|
"allowComments": true,
|
|
63
66
|
"allowTrailingCommas": true
|
|
67
|
+
},
|
|
68
|
+
"formatter": {
|
|
69
|
+
"expand": "always"
|
|
64
70
|
}
|
|
65
71
|
},
|
|
66
72
|
|
package/biome.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"root": true,
|
|
3
3
|
"$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
|
|
4
|
-
"extends": [
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
"extends": [
|
|
5
|
+
"./biome.all.recommended.json"
|
|
6
|
+
],
|
|
7
|
+
"files": {
|
|
8
|
+
"includes": [
|
|
9
|
+
"*.json"
|
|
10
|
+
]
|
|
11
|
+
},
|
|
12
|
+
"vcs": {
|
|
13
|
+
"useIgnoreFile": true
|
|
14
|
+
}
|
|
7
15
|
}
|
|
@@ -23,7 +23,10 @@
|
|
|
23
23
|
},
|
|
24
24
|
|
|
25
25
|
"files": {
|
|
26
|
-
"includes": [
|
|
26
|
+
"includes": [
|
|
27
|
+
"**",
|
|
28
|
+
"!!**/dist"
|
|
29
|
+
]
|
|
27
30
|
},
|
|
28
31
|
|
|
29
32
|
"formatter": {
|
|
@@ -64,6 +67,9 @@
|
|
|
64
67
|
"parser": {
|
|
65
68
|
"allowComments": true,
|
|
66
69
|
"allowTrailingCommas": true
|
|
70
|
+
},
|
|
71
|
+
"formatter": {
|
|
72
|
+
"expand": "always"
|
|
67
73
|
}
|
|
68
74
|
},
|
|
69
75
|
|
package/biome.react.strict.json
CHANGED
|
@@ -53,11 +53,15 @@
|
|
|
53
53
|
"noImportCycles": "warn",
|
|
54
54
|
"noIncrementDecrement": {
|
|
55
55
|
"level": "warn",
|
|
56
|
-
"options": {
|
|
56
|
+
"options": {
|
|
57
|
+
"allowForLoopAfterthoughts": true
|
|
58
|
+
}
|
|
57
59
|
},
|
|
58
60
|
"noJsxLiterals": {
|
|
59
61
|
"level": "warn",
|
|
60
|
-
"options": {
|
|
62
|
+
"options": {
|
|
63
|
+
"noStrings": true
|
|
64
|
+
}
|
|
61
65
|
},
|
|
62
66
|
"noJsxPropsBind": "error",
|
|
63
67
|
"noLeakedRender": "error",
|
|
@@ -211,7 +215,10 @@
|
|
|
211
215
|
},
|
|
212
216
|
|
|
213
217
|
"files": {
|
|
214
|
-
"includes": [
|
|
218
|
+
"includes": [
|
|
219
|
+
"**",
|
|
220
|
+
"!!**/dist"
|
|
221
|
+
]
|
|
215
222
|
},
|
|
216
223
|
|
|
217
224
|
"formatter": {
|
|
@@ -252,6 +259,9 @@
|
|
|
252
259
|
"parser": {
|
|
253
260
|
"allowComments": true,
|
|
254
261
|
"allowTrailingCommas": true
|
|
262
|
+
},
|
|
263
|
+
"formatter": {
|
|
264
|
+
"expand": "always"
|
|
255
265
|
}
|
|
256
266
|
},
|
|
257
267
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dvashim/biome-config",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Shared Biome Configurations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -35,6 +35,9 @@
|
|
|
35
35
|
"type": "git",
|
|
36
36
|
"url": "https://github.com/dvashim/biome-config.git"
|
|
37
37
|
},
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public"
|
|
40
|
+
},
|
|
38
41
|
"scripts": {
|
|
39
42
|
"check": "biome check .",
|
|
40
43
|
"changeset": "changeset",
|