@dvashim/biome-config 1.5.1 → 1.5.2
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/README.md
CHANGED
|
@@ -153,9 +153,10 @@ All configurations share the same base defaults.
|
|
|
153
153
|
|
|
154
154
|
### Overrides
|
|
155
155
|
|
|
156
|
-
| File pattern
|
|
157
|
-
|
|
158
|
-
| `package.json` |
|
|
156
|
+
| File pattern | Setting | Value |
|
|
157
|
+
|----------------|--------------------------------------|------------|
|
|
158
|
+
| `package.json` | assist.actions.source.useSortedKeys | `"off"` |
|
|
159
|
+
| `package.json` | json.formatter.expand | `"always"` |
|
|
159
160
|
|
|
160
161
|
### Assist
|
|
161
162
|
|
|
@@ -310,6 +310,13 @@
|
|
|
310
310
|
"overrides": [
|
|
311
311
|
{
|
|
312
312
|
"includes": ["package.json"],
|
|
313
|
+
"assist": {
|
|
314
|
+
"actions": {
|
|
315
|
+
"source": {
|
|
316
|
+
"useSortedKeys": "off"
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
},
|
|
313
320
|
"json": {
|
|
314
321
|
"formatter": {
|
|
315
322
|
"expand": "always"
|
|
@@ -321,8 +328,8 @@
|
|
|
321
328
|
// MARK: vcs
|
|
322
329
|
"vcs": {
|
|
323
330
|
"clientKind": "git",
|
|
324
|
-
"enabled": true,
|
|
325
331
|
"defaultBranch": "main",
|
|
332
|
+
"enabled": true,
|
|
326
333
|
"useIgnoreFile": true
|
|
327
334
|
}
|
|
328
335
|
}
|
|
@@ -78,6 +78,13 @@
|
|
|
78
78
|
"overrides": [
|
|
79
79
|
{
|
|
80
80
|
"includes": ["package.json"],
|
|
81
|
+
"assist": {
|
|
82
|
+
"actions": {
|
|
83
|
+
"source": {
|
|
84
|
+
"useSortedKeys": "off"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
},
|
|
81
88
|
"json": {
|
|
82
89
|
"formatter": {
|
|
83
90
|
"expand": "always"
|
|
@@ -89,8 +96,8 @@
|
|
|
89
96
|
// MARK: vcs
|
|
90
97
|
"vcs": {
|
|
91
98
|
"clientKind": "git",
|
|
92
|
-
"enabled": true,
|
|
93
99
|
"defaultBranch": "main",
|
|
100
|
+
"enabled": true,
|
|
94
101
|
"useIgnoreFile": true
|
|
95
102
|
}
|
|
96
103
|
}
|
|
@@ -300,6 +300,13 @@
|
|
|
300
300
|
"overrides": [
|
|
301
301
|
{
|
|
302
302
|
"includes": ["package.json"],
|
|
303
|
+
"assist": {
|
|
304
|
+
"actions": {
|
|
305
|
+
"source": {
|
|
306
|
+
"useSortedKeys": "off"
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
},
|
|
303
310
|
"json": {
|
|
304
311
|
"formatter": {
|
|
305
312
|
"expand": "always"
|
|
@@ -311,8 +318,8 @@
|
|
|
311
318
|
// MARK: vcs
|
|
312
319
|
"vcs": {
|
|
313
320
|
"clientKind": "git",
|
|
314
|
-
"enabled": true,
|
|
315
321
|
"defaultBranch": "main",
|
|
322
|
+
"enabled": true,
|
|
316
323
|
"useIgnoreFile": true
|
|
317
324
|
}
|
|
318
325
|
}
|
|
@@ -75,6 +75,13 @@
|
|
|
75
75
|
"overrides": [
|
|
76
76
|
{
|
|
77
77
|
"includes": ["package.json"],
|
|
78
|
+
"assist": {
|
|
79
|
+
"actions": {
|
|
80
|
+
"source": {
|
|
81
|
+
"useSortedKeys": "off"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
},
|
|
78
85
|
"json": {
|
|
79
86
|
"formatter": {
|
|
80
87
|
"expand": "always"
|
|
@@ -86,8 +93,8 @@
|
|
|
86
93
|
// MARK: vcs
|
|
87
94
|
"vcs": {
|
|
88
95
|
"clientKind": "git",
|
|
89
|
-
"enabled": true,
|
|
90
96
|
"defaultBranch": "main",
|
|
97
|
+
"enabled": true,
|
|
91
98
|
"useIgnoreFile": true
|
|
92
99
|
}
|
|
93
100
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dvashim/biome-config",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "Shared Biome Configurations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"biome",
|
|
@@ -37,6 +37,9 @@
|
|
|
37
37
|
"@changesets/cli": "^2.30.0",
|
|
38
38
|
"validate-package-exports": "^0.23.0"
|
|
39
39
|
},
|
|
40
|
+
"engines": {
|
|
41
|
+
"node": ">=18"
|
|
42
|
+
},
|
|
40
43
|
"publishConfig": {
|
|
41
44
|
"access": "public"
|
|
42
45
|
},
|