@nedcloarbr/biome-config 2.1.0 → 2.2.0
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/angular.json +1 -1
- package/base.json +8 -4
- package/css.json +12 -4
- package/html.json +1 -1
- package/ignore.json +1 -10
- package/nestjs.json +1 -1
- package/next.json +1 -1
- package/package.json +2 -2
- package/react-native.json +1 -1
- package/react.json +1 -1
- package/vue.json +1 -1
package/angular.json
CHANGED
package/base.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://biomejs.dev/schemas/2.
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.5.13/schema.json",
|
|
3
3
|
"assist": {
|
|
4
4
|
"actions": {
|
|
5
5
|
"source": {
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
"useAsConstAssertion": "warn",
|
|
96
96
|
"useConst": "error",
|
|
97
97
|
"useConsistentArrayType": {
|
|
98
|
-
"level": "
|
|
98
|
+
"level": "warn",
|
|
99
99
|
"options": {
|
|
100
100
|
"syntax": "shorthand"
|
|
101
101
|
}
|
|
@@ -104,12 +104,16 @@
|
|
|
104
104
|
"useDefaultParameterLast": "error",
|
|
105
105
|
"useEnumInitializers": "error",
|
|
106
106
|
"useExportType": {
|
|
107
|
-
"options": {
|
|
107
|
+
"options": {
|
|
108
|
+
"style": "auto"
|
|
109
|
+
},
|
|
108
110
|
"level": "info",
|
|
109
111
|
"fix": "none"
|
|
110
112
|
},
|
|
111
113
|
"useImportType": {
|
|
112
|
-
"options": {
|
|
114
|
+
"options": {
|
|
115
|
+
"style": "auto"
|
|
116
|
+
},
|
|
113
117
|
"level": "info",
|
|
114
118
|
"fix": "none"
|
|
115
119
|
},
|
package/css.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://biomejs.dev/schemas/2.
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.5.13/schema.json",
|
|
3
3
|
"css": {
|
|
4
4
|
"formatter": {
|
|
5
5
|
"enabled": true,
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
"enabled": true
|
|
14
14
|
},
|
|
15
15
|
"parser": {
|
|
16
|
-
"tailwindDirectives": true
|
|
16
|
+
"tailwindDirectives": true,
|
|
17
|
+
"cssModules": true
|
|
17
18
|
}
|
|
18
19
|
},
|
|
19
20
|
"linter": {
|
|
@@ -32,7 +33,10 @@
|
|
|
32
33
|
"noUnknownFunction": {
|
|
33
34
|
"level": "error",
|
|
34
35
|
"options": {
|
|
35
|
-
"ignore": [
|
|
36
|
+
"ignore": [
|
|
37
|
+
"theme",
|
|
38
|
+
"screen"
|
|
39
|
+
]
|
|
36
40
|
}
|
|
37
41
|
},
|
|
38
42
|
"noUnknownMediaFeatureName": "error",
|
|
@@ -64,7 +68,11 @@
|
|
|
64
68
|
"noUnknownAtRules": {
|
|
65
69
|
"level": "error",
|
|
66
70
|
"options": {
|
|
67
|
-
"ignore": [
|
|
71
|
+
"ignore": [
|
|
72
|
+
"tailwind",
|
|
73
|
+
"apply",
|
|
74
|
+
"config"
|
|
75
|
+
]
|
|
68
76
|
}
|
|
69
77
|
},
|
|
70
78
|
"noUselessEscapeInString": "error"
|
package/html.json
CHANGED
package/ignore.json
CHANGED
|
@@ -1,21 +1,17 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://biomejs.dev/schemas/2.
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.5.13/schema.json",
|
|
3
3
|
"files": {
|
|
4
4
|
"includes": [
|
|
5
5
|
"**",
|
|
6
|
-
|
|
7
6
|
"!**/node_modules",
|
|
8
|
-
|
|
9
7
|
"!**/dist",
|
|
10
8
|
"!**/out",
|
|
11
9
|
"!**/build",
|
|
12
10
|
"!**/bin",
|
|
13
11
|
"!**/tmp",
|
|
14
12
|
"!**/temp",
|
|
15
|
-
|
|
16
13
|
"!**/coverage",
|
|
17
14
|
"!**/.nyc_output",
|
|
18
|
-
|
|
19
15
|
"!**/.next",
|
|
20
16
|
"!**/.nuxt",
|
|
21
17
|
"!**/.output",
|
|
@@ -25,7 +21,6 @@
|
|
|
25
21
|
"!**/.solid",
|
|
26
22
|
"!**/.vinxi",
|
|
27
23
|
"!**/storybook-static",
|
|
28
|
-
|
|
29
24
|
"!**/.turbo",
|
|
30
25
|
"!**/.cache",
|
|
31
26
|
"!**/.angular",
|
|
@@ -35,13 +30,11 @@
|
|
|
35
30
|
"!**/.wrangler",
|
|
36
31
|
"!**/.serverless",
|
|
37
32
|
"!**/.expo",
|
|
38
|
-
|
|
39
33
|
"!**/.vscode",
|
|
40
34
|
"!**/.idea",
|
|
41
35
|
"!**/.vs",
|
|
42
36
|
"!**/.fleet",
|
|
43
37
|
"!**/.atom",
|
|
44
|
-
|
|
45
38
|
"!**/.cursor",
|
|
46
39
|
"!**/.windsurf",
|
|
47
40
|
"!**/.claude",
|
|
@@ -51,10 +44,8 @@
|
|
|
51
44
|
"!**/.aider",
|
|
52
45
|
"!**/.supermaven",
|
|
53
46
|
"!**/.cody",
|
|
54
|
-
|
|
55
47
|
"!**/.yarn",
|
|
56
48
|
"!**/*.pnp.*",
|
|
57
|
-
|
|
58
49
|
"!**/generated",
|
|
59
50
|
"!**/__generated__",
|
|
60
51
|
"!**/*.generated.ts",
|
package/nestjs.json
CHANGED
package/next.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nedcloarbr/biome-config",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "BiomeJS Configuration used by NedcloarBR in their projects",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -72,6 +72,6 @@
|
|
|
72
72
|
"changelog": "git cliff --prepend ./CHANGELOG.md -l --current -c ./cliff.toml -r ."
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"release-it": "^19.
|
|
75
|
+
"release-it": "^19.2.4"
|
|
76
76
|
}
|
|
77
77
|
}
|
package/react-native.json
CHANGED
package/react.json
CHANGED
package/vue.json
CHANGED