@nedcloarbr/biome-config 1.2.0 → 1.2.1

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.
Files changed (3) hide show
  1. package/README.md +8 -0
  2. package/ignore.json +12 -0
  3. package/package.json +5 -3
package/README.md CHANGED
@@ -55,6 +55,14 @@ bun add --dev --exact @biomejs/biome @nedcloarbr/biome-config
55
55
  + "extends": ["@nedcloarbr/biome-config/nestjs"]
56
56
  ```
57
57
 
58
+ ### `Ignore` (an array of commonly ignored folders)
59
+
60
+ ```diff
61
+ # biome.json
62
+ + "extends": ["@nedcloarbr/biome-config/ignore"]
63
+ ```
64
+
65
+
58
66
  ## To-Do
59
67
 
60
68
  Add support for other types of projects
package/ignore.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
3
+ "files": {
4
+ "ignore": [
5
+ "dist/*",
6
+ "out/*",
7
+ "build/*",
8
+ "coverage/*"
9
+ ],
10
+ "ignoreUnknown": true
11
+ }
12
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nedcloarbr/biome-config",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "BiomeJS Configuration used by NedcloarBR in their projects",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -27,10 +27,12 @@
27
27
  "formatter"
28
28
  ],
29
29
  "exports": {
30
- "./nestjs": "./nestjs.json"
30
+ "./nestjs": "./nestjs.json",
31
+ "./ignore": "./ignore.json"
31
32
  },
32
33
  "files": [
33
- "nestjs.json"
34
+ "nestjs.json",
35
+ "ignore.json"
34
36
  ],
35
37
  "packageManager": "yarn@4.3.1",
36
38
  "scripts": {