@dvashim/biome-config 1.3.4 → 1.4.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.
package/README.md
CHANGED
|
@@ -151,6 +151,12 @@ All configurations share the same base defaults.
|
|
|
151
151
|
| defaultBranch | `"main"` |
|
|
152
152
|
| useIgnoreFile | `true` |
|
|
153
153
|
|
|
154
|
+
### Overrides
|
|
155
|
+
|
|
156
|
+
| File pattern | Setting | Value |
|
|
157
|
+
|--------------|---------|-------|
|
|
158
|
+
| `package.json` | json.formatter.expand | `"always"` |
|
|
159
|
+
|
|
154
160
|
### Assist
|
|
155
161
|
|
|
156
162
|
| Option | Value |
|
|
@@ -303,6 +303,18 @@
|
|
|
303
303
|
}
|
|
304
304
|
},
|
|
305
305
|
|
|
306
|
+
// MARK: overrides
|
|
307
|
+
"overrides": [
|
|
308
|
+
{
|
|
309
|
+
"includes": ["package.json"],
|
|
310
|
+
"json": {
|
|
311
|
+
"formatter": {
|
|
312
|
+
"expand": "always"
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
],
|
|
317
|
+
|
|
306
318
|
// MARK: vcs
|
|
307
319
|
"vcs": {
|
|
308
320
|
"clientKind": "git",
|
|
@@ -293,6 +293,18 @@
|
|
|
293
293
|
}
|
|
294
294
|
},
|
|
295
295
|
|
|
296
|
+
// MARK: overrides
|
|
297
|
+
"overrides": [
|
|
298
|
+
{
|
|
299
|
+
"includes": ["package.json"],
|
|
300
|
+
"json": {
|
|
301
|
+
"formatter": {
|
|
302
|
+
"expand": "always"
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
],
|
|
307
|
+
|
|
296
308
|
// MARK: vcs
|
|
297
309
|
"vcs": {
|
|
298
310
|
"clientKind": "git",
|