@cleeviox/biome 0.1.1 → 0.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.
- package/README.md +4 -4
- package/base.jsonc +7 -2
- package/biome.jsonc +1 -1
- package/nestjs.jsonc +1 -1
- package/nextjs.jsonc +1 -1
- package/package.json +6 -6
- package/reactjs.jsonc +1 -1
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ Suitable for general TypeScript projects.
|
|
|
28
28
|
|
|
29
29
|
```json
|
|
30
30
|
{
|
|
31
|
-
"$schema": "https://biomejs.dev/schemas/2.3.
|
|
31
|
+
"$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
|
|
32
32
|
"extends": ["./node_modules/@cleeviox/biome/base.json"]
|
|
33
33
|
}
|
|
34
34
|
```
|
|
@@ -39,7 +39,7 @@ For React (JSX) projects.
|
|
|
39
39
|
|
|
40
40
|
```json
|
|
41
41
|
{
|
|
42
|
-
"$schema": "https://biomejs.dev/schemas/2.3.
|
|
42
|
+
"$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
|
|
43
43
|
"extends": ["./node_modules/@cleeviox/biome/react.json"]
|
|
44
44
|
}
|
|
45
45
|
```
|
|
@@ -50,7 +50,7 @@ For Next.js projects (extends React configuration).
|
|
|
50
50
|
|
|
51
51
|
```json
|
|
52
52
|
{
|
|
53
|
-
"$schema": "https://biomejs.dev/schemas/2.3.
|
|
53
|
+
"$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
|
|
54
54
|
"extends": ["./node_modules/@cleeviox/biome/nextjs.json"]
|
|
55
55
|
}
|
|
56
56
|
```
|
|
@@ -61,7 +61,7 @@ For NestJS projects.
|
|
|
61
61
|
|
|
62
62
|
```json
|
|
63
63
|
{
|
|
64
|
-
"$schema": "https://biomejs.dev/schemas/2.3.
|
|
64
|
+
"$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
|
|
65
65
|
"extends": ["./node_modules/@cleeviox/biome/nestjs.json"]
|
|
66
66
|
}
|
|
67
67
|
```
|
package/base.jsonc
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://biomejs.dev/schemas/2.3.
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
|
|
3
3
|
"assist": {
|
|
4
4
|
"actions": {
|
|
5
5
|
"source": {
|
|
@@ -157,7 +157,12 @@
|
|
|
157
157
|
},
|
|
158
158
|
"security": {
|
|
159
159
|
"noGlobalEval": "error",
|
|
160
|
-
"noSecrets":
|
|
160
|
+
"noSecrets": {
|
|
161
|
+
"level": "error",
|
|
162
|
+
"options": {
|
|
163
|
+
"entropyThreshold": 60
|
|
164
|
+
}
|
|
165
|
+
}
|
|
161
166
|
},
|
|
162
167
|
"style": {
|
|
163
168
|
"noCommonJs": "error",
|
package/biome.jsonc
CHANGED
package/nestjs.jsonc
CHANGED
package/nextjs.jsonc
CHANGED
package/package.json
CHANGED
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
},
|
|
5
5
|
"description": "Biome configuration used on CleevioX projects",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@biomejs/biome": "^2.3.
|
|
7
|
+
"@biomejs/biome": "^2.3.14"
|
|
8
8
|
},
|
|
9
9
|
"exports": {
|
|
10
|
-
"./base.
|
|
11
|
-
"./nestjs.
|
|
12
|
-
"./nextjs.
|
|
13
|
-
"./react.
|
|
10
|
+
"./base.jsonc": "./base.jsonc",
|
|
11
|
+
"./nestjs.jsonc": "./nestjs.jsonc",
|
|
12
|
+
"./nextjs.jsonc": "./nextjs.jsonc",
|
|
13
|
+
"./react.jsonc": "./react.jsonc"
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
16
|
"*.jsonc",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
},
|
|
45
45
|
"sideEffects": false,
|
|
46
46
|
"type": "module",
|
|
47
|
-
"version": "0.
|
|
47
|
+
"version": "0.2.1"
|
|
48
48
|
}
|
package/reactjs.jsonc
CHANGED