@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",
@@ -74,6 +74,18 @@
74
74
  }
75
75
  },
76
76
 
77
+ // MARK: overrides
78
+ "overrides": [
79
+ {
80
+ "includes": ["package.json"],
81
+ "json": {
82
+ "formatter": {
83
+ "expand": "always"
84
+ }
85
+ }
86
+ }
87
+ ],
88
+
77
89
  // MARK: vcs
78
90
  "vcs": {
79
91
  "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",
@@ -71,6 +71,18 @@
71
71
  }
72
72
  },
73
73
 
74
+ // MARK: overrides
75
+ "overrides": [
76
+ {
77
+ "includes": ["package.json"],
78
+ "json": {
79
+ "formatter": {
80
+ "expand": "always"
81
+ }
82
+ }
83
+ }
84
+ ],
85
+
74
86
  // MARK: vcs
75
87
  "vcs": {
76
88
  "clientKind": "git",
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "license": "MIT",
4
4
  "name": "@dvashim/biome-config",
5
5
  "type": "module",
6
- "version": "1.3.4",
6
+ "version": "1.4.0",
7
7
  "author": {
8
8
  "email": "aleksei@dvashim.dev",
9
9
  "name": "Aleksei Reznichenko"