@versini/dev-dependencies-common 3.2.8 → 3.2.10
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/biome.json +7 -25
- package/package.json +9 -5
package/biome.json
CHANGED
|
@@ -67,9 +67,12 @@
|
|
|
67
67
|
"noGlobalEval": "error"
|
|
68
68
|
},
|
|
69
69
|
"style": {
|
|
70
|
+
"noArguments": "error",
|
|
70
71
|
"noNamespace": "error",
|
|
72
|
+
"noVar": "error",
|
|
71
73
|
"useAsConstAssertion": "error",
|
|
72
|
-
"useBlockStatements": "
|
|
74
|
+
"useBlockStatements": "error",
|
|
75
|
+
"useConst": "error"
|
|
73
76
|
},
|
|
74
77
|
"suspicious": {
|
|
75
78
|
"noAssignInExpressions": "error",
|
|
@@ -109,6 +112,7 @@
|
|
|
109
112
|
"ignore": ["dist", ".eslintrc.cjs"]
|
|
110
113
|
},
|
|
111
114
|
"javascript": {
|
|
115
|
+
"globals": ["React"],
|
|
112
116
|
"formatter": {
|
|
113
117
|
"arrowParentheses": "always",
|
|
114
118
|
"attributePosition": "auto",
|
|
@@ -123,33 +127,11 @@
|
|
|
123
127
|
},
|
|
124
128
|
"overrides": [
|
|
125
129
|
{
|
|
126
|
-
"include": ["*.ts", "*.tsx"
|
|
130
|
+
"include": ["*.test.ts", "*.test.tsx"],
|
|
127
131
|
"linter": {
|
|
128
132
|
"rules": {
|
|
129
133
|
"correctness": {
|
|
130
|
-
"
|
|
131
|
-
"noGlobalObjectCalls": "off",
|
|
132
|
-
"noInvalidConstructorSuper": "off",
|
|
133
|
-
"noNewSymbol": "off",
|
|
134
|
-
"noSetterReturn": "off",
|
|
135
|
-
"noUndeclaredVariables": "off",
|
|
136
|
-
"noUnreachable": "off",
|
|
137
|
-
"noUnreachableSuper": "off"
|
|
138
|
-
},
|
|
139
|
-
"style": {
|
|
140
|
-
"noArguments": "error",
|
|
141
|
-
"noVar": "error",
|
|
142
|
-
"useConst": "error"
|
|
143
|
-
},
|
|
144
|
-
"suspicious": {
|
|
145
|
-
"noDuplicateClassMembers": "off",
|
|
146
|
-
"noDuplicateObjectKeys": "off",
|
|
147
|
-
"noDuplicateParameters": "off",
|
|
148
|
-
"noFunctionAssign": "off",
|
|
149
|
-
"noImportAssign": "off",
|
|
150
|
-
"noRedeclare": "off",
|
|
151
|
-
"noUnsafeNegation": "off",
|
|
152
|
-
"useGetterReturn": "off"
|
|
134
|
+
"noUndeclaredVariables": "off"
|
|
153
135
|
}
|
|
154
136
|
}
|
|
155
137
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/dev-dependencies-common",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.10",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -11,13 +11,17 @@
|
|
|
11
11
|
"type": "git",
|
|
12
12
|
"url": "git@github.com:aversini/dev-dependencies.git"
|
|
13
13
|
},
|
|
14
|
+
"type": "module",
|
|
14
15
|
"files": [
|
|
15
16
|
"biome.json"
|
|
16
17
|
],
|
|
18
|
+
"exports": {
|
|
19
|
+
"./biome": "./biome.json"
|
|
20
|
+
},
|
|
17
21
|
"dependencies": {
|
|
18
|
-
"@biomejs/biome": "1.7.
|
|
19
|
-
"@typescript-eslint/eslint-plugin": "7.7.
|
|
20
|
-
"@typescript-eslint/parser": "7.7.
|
|
22
|
+
"@biomejs/biome": "1.7.1",
|
|
23
|
+
"@typescript-eslint/eslint-plugin": "7.7.1",
|
|
24
|
+
"@typescript-eslint/parser": "7.7.1",
|
|
21
25
|
"chokidar": "3.6.0",
|
|
22
26
|
"culori": "4.0.1",
|
|
23
27
|
"dotenv": "16.4.5",
|
|
@@ -31,5 +35,5 @@
|
|
|
31
35
|
"jsdom": "24.0.0",
|
|
32
36
|
"typescript": "5.4.5"
|
|
33
37
|
},
|
|
34
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "8ebfa94e968965c7f1ada07381d4742c8a0bb766"
|
|
35
39
|
}
|