@cleeviox/biome 0.2.1 → 0.2.3
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 +7 -7
- package/base.jsonc +2 -2
- package/biome.jsonc +1 -1
- package/nestjs.jsonc +1 -1
- package/nextjs.jsonc +1 -1
- package/package.json +2 -2
- package/reactjs.jsonc +2 -1
package/README.md
CHANGED
|
@@ -28,8 +28,8 @@ Suitable for general TypeScript projects.
|
|
|
28
28
|
|
|
29
29
|
```json
|
|
30
30
|
{
|
|
31
|
-
"$schema": "https://biomejs.dev/schemas/2.
|
|
32
|
-
"extends": ["./node_modules/@cleeviox/biome/base.
|
|
31
|
+
"$schema": "https://biomejs.dev/schemas/2.4.0/schema.json",
|
|
32
|
+
"extends": ["./node_modules/@cleeviox/biome/base.jsonc"]
|
|
33
33
|
}
|
|
34
34
|
```
|
|
35
35
|
|
|
@@ -39,8 +39,8 @@ For React (JSX) projects.
|
|
|
39
39
|
|
|
40
40
|
```json
|
|
41
41
|
{
|
|
42
|
-
"$schema": "https://biomejs.dev/schemas/2.
|
|
43
|
-
"extends": ["./node_modules/@cleeviox/biome/react.
|
|
42
|
+
"$schema": "https://biomejs.dev/schemas/2.4.0/schema.json",
|
|
43
|
+
"extends": ["./node_modules/@cleeviox/biome/react.jsonc"]
|
|
44
44
|
}
|
|
45
45
|
```
|
|
46
46
|
|
|
@@ -50,8 +50,8 @@ For Next.js projects (extends React configuration).
|
|
|
50
50
|
|
|
51
51
|
```json
|
|
52
52
|
{
|
|
53
|
-
"$schema": "https://biomejs.dev/schemas/2.
|
|
54
|
-
"extends": ["./node_modules/@cleeviox/biome/nextjs.
|
|
53
|
+
"$schema": "https://biomejs.dev/schemas/2.4.0/schema.json",
|
|
54
|
+
"extends": ["./node_modules/@cleeviox/biome/base.jsonc", "./node_modules/@cleeviox/biome/reactjs.jsonc", "./node_modules/@cleeviox/biome/nextjs.jsonc"]
|
|
55
55
|
}
|
|
56
56
|
```
|
|
57
57
|
|
|
@@ -61,7 +61,7 @@ For NestJS projects.
|
|
|
61
61
|
|
|
62
62
|
```json
|
|
63
63
|
{
|
|
64
|
-
"$schema": "https://biomejs.dev/schemas/2.
|
|
64
|
+
"$schema": "https://biomejs.dev/schemas/2.4.0/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.
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.4.0/schema.json",
|
|
3
3
|
"assist": {
|
|
4
4
|
"actions": {
|
|
5
5
|
"source": {
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
"noProcessGlobal": "error",
|
|
113
113
|
"noSelfAssign": "error",
|
|
114
114
|
"noSetterReturn": "error",
|
|
115
|
-
"noSolidDestructuredProps": "
|
|
115
|
+
"noSolidDestructuredProps": "off",
|
|
116
116
|
"noStringCaseMismatch": "error",
|
|
117
117
|
"noSwitchDeclarations": "error",
|
|
118
118
|
"noUndeclaredDependencies": "error",
|
package/biome.jsonc
CHANGED
package/nestjs.jsonc
CHANGED
package/nextjs.jsonc
CHANGED
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
},
|
|
5
5
|
"description": "Biome configuration used on CleevioX projects",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@biomejs/biome": "^2.
|
|
7
|
+
"@biomejs/biome": "^2.4.0"
|
|
8
8
|
},
|
|
9
9
|
"exports": {
|
|
10
10
|
"./base.jsonc": "./base.jsonc",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
},
|
|
45
45
|
"sideEffects": false,
|
|
46
46
|
"type": "module",
|
|
47
|
-
"version": "0.2.
|
|
47
|
+
"version": "0.2.3"
|
|
48
48
|
}
|
package/reactjs.jsonc
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://biomejs.dev/schemas/2.
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.4.0/schema.json",
|
|
3
3
|
"css": {
|
|
4
4
|
"parser": {
|
|
5
5
|
"tailwindDirectives": true
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"noDescendingSpecificity": "error",
|
|
49
49
|
"noHeadElement": "error",
|
|
50
50
|
"noImplicitBoolean": "error",
|
|
51
|
+
"noJsxLiterals": "error",
|
|
51
52
|
"noValueAtRule": "error",
|
|
52
53
|
"useConsistentCurlyBraces": "error",
|
|
53
54
|
"useFragmentSyntax": "error",
|