@adbayb/stack 2.40.0-next-bfbc2eb → 2.40.0-next-40261d0

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.
@@ -36,6 +36,7 @@ const config = defineConfig({
36
36
  files: TEST_LIKE_FILES,
37
37
  plugins: ["vitest"],
38
38
  rules: {
39
+ "vitest/consistent-test-it": ["error", { fn: "test", withinDescribe: "test" }],
39
40
  "vitest/no-importing-vitest-globals": "off",
40
41
  },
41
42
  },
@@ -82,6 +83,7 @@ const config = defineConfig({
82
83
  "@stylistic/jsx-self-closing-comp": "error",
83
84
  "@stylistic/lines-between-class-members": "error",
84
85
  "@stylistic/multiline-comment-style": "error",
86
+ "@stylistic/padded-blocks": ["error", "never"],
85
87
  "@stylistic/padding-line-between-statements": [
86
88
  "error",
87
89
  // Default: separate everything.
@@ -23,6 +23,10 @@ declare const config: {
23
23
  files: string[];
24
24
  plugins: "vitest"[];
25
25
  rules: {
26
+ "vitest/consistent-test-it": ["error", {
27
+ fn: "test";
28
+ withinDescribe: "test";
29
+ }];
26
30
  "vitest/no-importing-vitest-globals": "off";
27
31
  "import/no-anonymous-default-export"?: never;
28
32
  "import/no-default-export"?: never;
@@ -32,6 +36,7 @@ declare const config: {
32
36
  rules: {
33
37
  "import/no-anonymous-default-export": "off";
34
38
  "import/no-default-export": "off";
39
+ "vitest/consistent-test-it"?: never;
35
40
  "vitest/no-importing-vitest-globals"?: never;
36
41
  };
37
42
  plugins?: never;
@@ -42,6 +47,7 @@ declare const config: {
42
47
  "@stylistic/jsx-self-closing-comp": "error";
43
48
  "@stylistic/lines-between-class-members": "error";
44
49
  "@stylistic/multiline-comment-style": "error";
50
+ "@stylistic/padded-blocks": ["error", string];
45
51
  "@stylistic/padding-line-between-statements": ["error", {
46
52
  blankLine: string;
47
53
  next: string;
@@ -44,7 +44,13 @@ const config = defineConfig({
44
44
  overrides: [{
45
45
  files: TEST_LIKE_FILES,
46
46
  plugins: ["vitest"],
47
- rules: { "vitest/no-importing-vitest-globals": "off" }
47
+ rules: {
48
+ "vitest/consistent-test-it": ["error", {
49
+ fn: "test",
50
+ withinDescribe: "test"
51
+ }],
52
+ "vitest/no-importing-vitest-globals": "off"
53
+ }
48
54
  }, {
49
55
  files: [
50
56
  ...TEST_LIKE_FILES,
@@ -87,6 +93,7 @@ const config = defineConfig({
87
93
  "@stylistic/jsx-self-closing-comp": "error",
88
94
  "@stylistic/lines-between-class-members": "error",
89
95
  "@stylistic/multiline-comment-style": "error",
96
+ "@stylistic/padded-blocks": ["error", "never"],
90
97
  "@stylistic/padding-line-between-statements": [
91
98
  "error",
92
99
  {
package/dist/index.js CHANGED
@@ -441,7 +441,7 @@ const PRESERVE_FILES = ["node_modules"];
441
441
 
442
442
  //#endregion
443
443
  //#region package.json
444
- var version = "2.40.0-next-bfbc2eb";
444
+ var version = "2.40.0-next-40261d0";
445
445
 
446
446
  //#endregion
447
447
  //#region src/commands/create.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/stack",
3
- "version": "2.40.0-next-bfbc2eb",
3
+ "version": "2.40.0-next-40261d0",
4
4
  "description": "My opinionated JavaScript-based toolchain",
5
5
  "keywords": [
6
6
  "development",