@hyoretsu/configs 1.1.10 → 1.1.12
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/dist/biome/base.json +9 -1
- package/dist/biome/nest.json +9 -1
- package/dist/biome/react.json +9 -1
- package/dist/ts/backend.json +2 -1
- package/dist/ts/base.json +2 -1
- package/dist/ts/frontend.json +2 -1
- package/dist/ts/lib.json +2 -1
- package/dist/ts/nest.json +2 -1
- package/package.json +1 -1
package/dist/biome/base.json
CHANGED
|
@@ -51,12 +51,20 @@
|
|
|
51
51
|
"noForEach": "off"
|
|
52
52
|
},
|
|
53
53
|
"correctness": {
|
|
54
|
+
"noUnusedFunctionParameters": {
|
|
55
|
+
"fix": "none",
|
|
56
|
+
"level": "warn",
|
|
57
|
+
"options": {
|
|
58
|
+
"ignoreRestSiblings": true
|
|
59
|
+
}
|
|
60
|
+
},
|
|
54
61
|
"noUnusedImports": {
|
|
55
62
|
"fix": "safe",
|
|
56
63
|
"level": "error"
|
|
57
64
|
},
|
|
58
|
-
"noUnusedPrivateClassMembers": "
|
|
65
|
+
"noUnusedPrivateClassMembers": "error",
|
|
59
66
|
"noUnusedVariables": {
|
|
67
|
+
"fix": "none",
|
|
60
68
|
"level": "warn",
|
|
61
69
|
"options": {
|
|
62
70
|
"ignoreRestSiblings": true
|
package/dist/biome/nest.json
CHANGED
|
@@ -51,12 +51,20 @@
|
|
|
51
51
|
"noForEach": "off"
|
|
52
52
|
},
|
|
53
53
|
"correctness": {
|
|
54
|
+
"noUnusedFunctionParameters": {
|
|
55
|
+
"fix": "none",
|
|
56
|
+
"level": "warn",
|
|
57
|
+
"options": {
|
|
58
|
+
"ignoreRestSiblings": true
|
|
59
|
+
}
|
|
60
|
+
},
|
|
54
61
|
"noUnusedImports": {
|
|
55
62
|
"fix": "safe",
|
|
56
63
|
"level": "error"
|
|
57
64
|
},
|
|
58
|
-
"noUnusedPrivateClassMembers": "
|
|
65
|
+
"noUnusedPrivateClassMembers": "error",
|
|
59
66
|
"noUnusedVariables": {
|
|
67
|
+
"fix": "none",
|
|
60
68
|
"level": "warn",
|
|
61
69
|
"options": {
|
|
62
70
|
"ignoreRestSiblings": true
|
package/dist/biome/react.json
CHANGED
|
@@ -58,12 +58,20 @@
|
|
|
58
58
|
"noForEach": "off"
|
|
59
59
|
},
|
|
60
60
|
"correctness": {
|
|
61
|
+
"noUnusedFunctionParameters": {
|
|
62
|
+
"fix": "none",
|
|
63
|
+
"level": "warn",
|
|
64
|
+
"options": {
|
|
65
|
+
"ignoreRestSiblings": true
|
|
66
|
+
}
|
|
67
|
+
},
|
|
61
68
|
"noUnusedImports": {
|
|
62
69
|
"fix": "safe",
|
|
63
70
|
"level": "error"
|
|
64
71
|
},
|
|
65
|
-
"noUnusedPrivateClassMembers": "
|
|
72
|
+
"noUnusedPrivateClassMembers": "error",
|
|
66
73
|
"noUnusedVariables": {
|
|
74
|
+
"fix": "none",
|
|
67
75
|
"level": "warn",
|
|
68
76
|
"options": {
|
|
69
77
|
"ignoreRestSiblings": true
|
package/dist/ts/backend.json
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "http://json.schemastore.org/tsconfig",
|
|
3
2
|
"compilerOptions": {
|
|
4
3
|
"allowJs": true,
|
|
5
4
|
"checkJs": true,
|
|
@@ -20,6 +19,8 @@
|
|
|
20
19
|
"noImplicitOverride": true,
|
|
21
20
|
"noPropertyAccessFromIndexSignature": false,
|
|
22
21
|
"noUncheckedIndexedAccess": true,
|
|
22
|
+
"noUnusedLocals": true,
|
|
23
|
+
"noUnusedParameters": true,
|
|
23
24
|
"removeComments": true,
|
|
24
25
|
"resolveJsonModule": true,
|
|
25
26
|
"rewriteRelativeImportExtensions": true,
|
package/dist/ts/base.json
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "http://json.schemastore.org/tsconfig",
|
|
3
2
|
"compilerOptions": {
|
|
4
3
|
"allowJs": true,
|
|
5
4
|
"checkJs": true,
|
|
@@ -18,6 +17,8 @@
|
|
|
18
17
|
"noImplicitOverride": true,
|
|
19
18
|
"noPropertyAccessFromIndexSignature": false,
|
|
20
19
|
"noUncheckedIndexedAccess": true,
|
|
20
|
+
"noUnusedLocals": true,
|
|
21
|
+
"noUnusedParameters": true,
|
|
21
22
|
"removeComments": true,
|
|
22
23
|
"resolveJsonModule": true,
|
|
23
24
|
"rewriteRelativeImportExtensions": true,
|
package/dist/ts/frontend.json
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "http://json.schemastore.org/tsconfig",
|
|
3
2
|
"compilerOptions": {
|
|
4
3
|
"allowJs": true,
|
|
5
4
|
"checkJs": true,
|
|
@@ -20,6 +19,8 @@
|
|
|
20
19
|
"noImplicitOverride": true,
|
|
21
20
|
"noPropertyAccessFromIndexSignature": false,
|
|
22
21
|
"noUncheckedIndexedAccess": true,
|
|
22
|
+
"noUnusedLocals": true,
|
|
23
|
+
"noUnusedParameters": true,
|
|
23
24
|
"removeComments": true,
|
|
24
25
|
"resolveJsonModule": true,
|
|
25
26
|
"rewriteRelativeImportExtensions": true,
|
package/dist/ts/lib.json
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "http://json.schemastore.org/tsconfig",
|
|
3
2
|
"compilerOptions": {
|
|
4
3
|
"allowJs": true,
|
|
5
4
|
"checkJs": true,
|
|
@@ -20,6 +19,8 @@
|
|
|
20
19
|
"noImplicitOverride": true,
|
|
21
20
|
"noPropertyAccessFromIndexSignature": false,
|
|
22
21
|
"noUncheckedIndexedAccess": true,
|
|
22
|
+
"noUnusedLocals": true,
|
|
23
|
+
"noUnusedParameters": true,
|
|
23
24
|
"removeComments": true,
|
|
24
25
|
"resolveJsonModule": true,
|
|
25
26
|
"rewriteRelativeImportExtensions": true,
|
package/dist/ts/nest.json
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "http://json.schemastore.org/tsconfig",
|
|
3
2
|
"compilerOptions": {
|
|
4
3
|
"allowJs": true,
|
|
5
4
|
"checkJs": true,
|
|
@@ -20,6 +19,8 @@
|
|
|
20
19
|
"noImplicitOverride": true,
|
|
21
20
|
"noPropertyAccessFromIndexSignature": false,
|
|
22
21
|
"noUncheckedIndexedAccess": true,
|
|
22
|
+
"noUnusedLocals": true,
|
|
23
|
+
"noUnusedParameters": true,
|
|
23
24
|
"removeComments": true,
|
|
24
25
|
"resolveJsonModule": true,
|
|
25
26
|
"rewriteRelativeImportExtensions": true,
|