@adbayb/stack 2.11.0 → 2.13.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/configs/eslint/presets/sonar.js +0 -1
- package/configs/eslint/presets/test.js +2 -2
- package/configs/eslint/presets/typescript.js +7 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/templates/multi-projects/.github/PULL_REQUEST_TEMPLATE.md.tmpl +5 -5
- package/templates/multi-projects/libraries/{{projectName}}/package.json.tmpl +1 -1
- package/templates/single-project/.github/PULL_REQUEST_TEMPLATE.md.tmpl +5 -5
- package/templates/single-project/{{projectName}}/package.json.tmpl +1 -1
|
@@ -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",
|
|
@@ -4,8 +4,8 @@ import vitestPlugin from "@vitest/eslint-plugin";
|
|
|
4
4
|
export const config = [
|
|
5
5
|
{
|
|
6
6
|
files: [
|
|
7
|
-
"**/test.{js,ts,jsx,tsx,cjs,cts,mjs,mts}",
|
|
8
|
-
"**/*.test.{js,ts,jsx,tsx,cjs,cts,mjs,mts}",
|
|
7
|
+
"**/{test,test-d}.{js,ts,jsx,tsx,cjs,cts,mjs,mts}",
|
|
8
|
+
"**/*.{test,test-d}.{js,ts,jsx,tsx,cjs,cts,mjs,mts}",
|
|
9
9
|
],
|
|
10
10
|
plugins: {
|
|
11
11
|
"jest-formatting": jestFormattingPlugin,
|
|
@@ -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
package/package.json
CHANGED
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
|
|
14
14
|
Please include a concise summary of the change with the relevant context and main highlights:
|
|
15
15
|
|
|
16
|
-
-
|
|
17
|
-
-
|
|
16
|
+
- [ ] What I've done 1
|
|
17
|
+
- [ ] What I've done 2...
|
|
18
18
|
|
|
19
19
|
## Screenshots
|
|
20
20
|
|
|
@@ -24,6 +24,6 @@ Please include a concise summary of the change with the relevant context and mai
|
|
|
24
24
|
|
|
25
25
|
## Resources
|
|
26
26
|
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
-
|
|
27
|
+
- Issue (GitHub, ...)
|
|
28
|
+
- Specification (ADRs, RFCs, ...)
|
|
29
|
+
- ...
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"clean": "rm -rf dist",
|
|
31
31
|
"prepublishOnly": "pnpm build",
|
|
32
32
|
"start": "pnpm watch",
|
|
33
|
-
"test": "vitest --typecheck --reporter=verbose",
|
|
33
|
+
"test": "vitest --passWithNoTests --typecheck --reporter=verbose",
|
|
34
34
|
"watch": "quickbundle watch"
|
|
35
35
|
},
|
|
36
36
|
"publishConfig": {
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
|
|
14
14
|
Please include a concise summary of the change with the relevant context and main highlights:
|
|
15
15
|
|
|
16
|
-
-
|
|
17
|
-
-
|
|
16
|
+
- [ ] What I've done 1
|
|
17
|
+
- [ ] What I've done 2...
|
|
18
18
|
|
|
19
19
|
## Screenshots
|
|
20
20
|
|
|
@@ -24,6 +24,6 @@ Please include a concise summary of the change with the relevant context and mai
|
|
|
24
24
|
|
|
25
25
|
## Resources
|
|
26
26
|
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
-
|
|
27
|
+
- Issue (GitHub, ...)
|
|
28
|
+
- Specification (ADRs, RFCs, ...)
|
|
29
|
+
- ...
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"clean": "rm -rf dist",
|
|
31
31
|
"prepublishOnly": "pnpm build",
|
|
32
32
|
"start": "pnpm watch",
|
|
33
|
-
"test": "vitest --typecheck --reporter=verbose",
|
|
33
|
+
"test": "vitest --passWithNoTests --typecheck --reporter=verbose",
|
|
34
34
|
"watch": "quickbundle watch"
|
|
35
35
|
},
|
|
36
36
|
"publishConfig": {
|