@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 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.11/schema.json",
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.11/schema.json",
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.11/schema.json",
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.11/schema.json",
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.11/schema.json",
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": "error"
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
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
2
+ "$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
3
3
  "extends": ["./base.jsonc"],
4
4
  "overrides": [
5
5
  {
package/nestjs.jsonc CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
2
+ "$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
3
3
  "extends": ["./base.jsonc"],
4
4
  "linter": {
5
5
  "rules": {
package/nextjs.jsonc CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
2
+ "$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
3
3
  "extends": ["./react.jsonc"],
4
4
  "linter": {
5
5
  "rules": {
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.11"
7
+ "@biomejs/biome": "^2.3.14"
8
8
  },
9
9
  "exports": {
10
- "./base.json": "./base.jsonc",
11
- "./nestjs.json": "./nestjs.jsonc",
12
- "./nextjs.json": "./nextjs.jsonc",
13
- "./react.json": "./react.jsonc"
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.1.1"
47
+ "version": "0.2.1"
48
48
  }
package/reactjs.jsonc CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
2
+ "$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
3
3
  "css": {
4
4
  "parser": {
5
5
  "tailwindDirectives": true