@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.
@@ -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": "error",
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
@@ -186,7 +186,7 @@ const ESLINT_EXTENSIONS = [
186
186
  "mdx"
187
187
  ];
188
188
 
189
- var version = "2.11.0";
189
+ var version = "2.13.0";
190
190
 
191
191
  const createWatchCommand = (program)=>{
192
192
  program.command({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/stack",
3
- "version": "2.11.0",
3
+ "version": "2.13.0",
4
4
  "description": "My opinionated JavaScript-based toolchain",
5
5
  "keywords": [
6
6
  "stack",
@@ -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
- - [ ] What I've done 1
17
- - [ ] What I've done 2...
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
- - Issue (GitHub, ...)
28
- - Specification (ADRs, RFCs, ...)
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
- - [ ] What I've done 1
17
- - [ ] What I've done 2...
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
- - Issue (GitHub, ...)
28
- - Specification (ADRs, RFCs, ...)
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": {