@dvashim/biome-config 1.0.7 → 1.0.8

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 ADDED
@@ -0,0 +1,33 @@
1
+ # @dvashim/biome-config
2
+
3
+ ## Installation
4
+
5
+ To install this package, you can use npm or yarn:
6
+
7
+ ```bash
8
+ npm install @dvashim/biome-config
9
+ ```
10
+
11
+ ### Recommended config
12
+
13
+ ```json
14
+ {
15
+ "extends": ["@dvashim/biome-config/all/recommended"]
16
+ }
17
+ ```
18
+
19
+ ### React config
20
+
21
+ ```json
22
+ {
23
+ "extends": ["@dvashim/biome-config/react/recommended"]
24
+ }
25
+ ```
26
+
27
+ or
28
+
29
+ ```json
30
+ {
31
+ "extends": ["@dvashim/biome-config/react/strict"]
32
+ }
33
+ ```
@@ -20,10 +20,7 @@
20
20
  },
21
21
 
22
22
  "files": {
23
- "includes": [
24
- "**",
25
- "!!**/dist"
26
- ]
23
+ "includes": ["**", "!!**/dist"]
27
24
  },
28
25
 
29
26
  "formatter": {
@@ -66,7 +63,7 @@
66
63
  "allowTrailingCommas": true
67
64
  },
68
65
  "formatter": {
69
- "expand": "always"
66
+ "expand": "auto"
70
67
  }
71
68
  },
72
69
 
package/biome.json CHANGED
@@ -1,13 +1,9 @@
1
1
  {
2
2
  "root": true,
3
3
  "$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
4
- "extends": [
5
- "./biome.all.recommended.json"
6
- ],
4
+ "extends": ["./biome.all.recommended.json"],
7
5
  "files": {
8
- "includes": [
9
- "*.json"
10
- ]
6
+ "includes": ["*.json"]
11
7
  },
12
8
  "vcs": {
13
9
  "useIgnoreFile": true
@@ -23,10 +23,7 @@
23
23
  },
24
24
 
25
25
  "files": {
26
- "includes": [
27
- "**",
28
- "!!**/dist"
29
- ]
26
+ "includes": ["**", "!!**/dist"]
30
27
  },
31
28
 
32
29
  "formatter": {
@@ -69,7 +66,7 @@
69
66
  "allowTrailingCommas": true
70
67
  },
71
68
  "formatter": {
72
- "expand": "always"
69
+ "expand": "auto"
73
70
  }
74
71
  },
75
72
 
@@ -215,10 +215,7 @@
215
215
  },
216
216
 
217
217
  "files": {
218
- "includes": [
219
- "**",
220
- "!!**/dist"
221
- ]
218
+ "includes": ["**", "!!**/dist"]
222
219
  },
223
220
 
224
221
  "formatter": {
@@ -261,7 +258,7 @@
261
258
  "allowTrailingCommas": true
262
259
  },
263
260
  "formatter": {
264
- "expand": "always"
261
+ "expand": "auto"
265
262
  }
266
263
  },
267
264
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvashim/biome-config",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Shared Biome Configurations",
5
5
  "type": "module",
6
6
  "exports": {