@adbayb/stack 0.0.0-next-f8bba1c → 0.0.0-next-ef282d9
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.
|
@@ -187,7 +187,6 @@ export const config = [
|
|
|
187
187
|
"sonarjs/unverified-hostname": "error",
|
|
188
188
|
"sonarjs/updated-loop-counter": "error",
|
|
189
189
|
"sonarjs/use-type-alias": "error",
|
|
190
|
-
"sonarjs/void-use": "error",
|
|
191
190
|
"sonarjs/weak-ssl": "error",
|
|
192
191
|
"sonarjs/x-powered-by": "error",
|
|
193
192
|
"sonarjs/xml-parser-xxe": "error",
|
|
@@ -42,7 +42,13 @@ export const config = [
|
|
|
42
42
|
"error",
|
|
43
43
|
"fields",
|
|
44
44
|
],
|
|
45
|
-
"@typescript-eslint/class-methods-use-this":
|
|
45
|
+
"@typescript-eslint/class-methods-use-this": [
|
|
46
|
+
"error",
|
|
47
|
+
{
|
|
48
|
+
ignoreClassesThatImplementAnInterface: true,
|
|
49
|
+
ignoreOverrideMethods: true,
|
|
50
|
+
},
|
|
51
|
+
],
|
|
46
52
|
"@typescript-eslint/consistent-generic-constructors": [
|
|
47
53
|
"error",
|
|
48
54
|
"constructor",
|
package/dist/index.js
CHANGED