@saasmakers/eslint 0.1.71 → 0.1.72

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.
@@ -10812,7 +10812,12 @@ const eslint_config = antfu__default(
10812
10812
  {
10813
10813
  files: ["**/*.test.ts"],
10814
10814
  ...vitest__default.configs.all,
10815
- languageOptions: { globals: { ...vitest__default.environments.env.globals } }
10815
+ languageOptions: { globals: { ...vitest__default.environments.env.globals } },
10816
+ rules: {
10817
+ "vitest/no-hooks": "off",
10818
+ "vitest/prefer-describe-function-title": "off",
10819
+ "vitest/prefer-expect-assertions": "off"
10820
+ }
10816
10821
  }
10817
10822
  );
10818
10823
 
@@ -93,7 +93,12 @@ var eslint_config = antfu(
93
93
  {
94
94
  files: ["**/*.test.ts"],
95
95
  ...vitest.configs.all,
96
- languageOptions: { globals: { ...vitest.environments.env.globals } }
96
+ languageOptions: { globals: { ...vitest.environments.env.globals } },
97
+ rules: {
98
+ "vitest/no-hooks": "off",
99
+ "vitest/prefer-describe-function-title": "off",
100
+ "vitest/prefer-expect-assertions": "off"
101
+ }
97
102
  }
98
103
  );
99
104
 
@@ -93,7 +93,12 @@ var eslint_config = antfu(
93
93
  {
94
94
  files: ["**/*.test.ts"],
95
95
  ...vitest.configs.all,
96
- languageOptions: { globals: { ...vitest.environments.env.globals } }
96
+ languageOptions: { globals: { ...vitest.environments.env.globals } },
97
+ rules: {
98
+ "vitest/no-hooks": "off",
99
+ "vitest/prefer-describe-function-title": "off",
100
+ "vitest/prefer-expect-assertions": "off"
101
+ }
97
102
  }
98
103
  );
99
104
 
@@ -93,7 +93,12 @@ var eslint_config = antfu(
93
93
  {
94
94
  files: ["**/*.test.ts"],
95
95
  ...vitest.configs.all,
96
- languageOptions: { globals: { ...vitest.environments.env.globals } }
96
+ languageOptions: { globals: { ...vitest.environments.env.globals } },
97
+ rules: {
98
+ "vitest/no-hooks": "off",
99
+ "vitest/prefer-describe-function-title": "off",
100
+ "vitest/prefer-expect-assertions": "off"
101
+ }
97
102
  }
98
103
  );
99
104
 
@@ -10787,7 +10787,12 @@ const eslint_config = antfu(
10787
10787
  {
10788
10788
  files: ["**/*.test.ts"],
10789
10789
  ...vitest.configs.all,
10790
- languageOptions: { globals: { ...vitest.environments.env.globals } }
10790
+ languageOptions: { globals: { ...vitest.environments.env.globals } },
10791
+ rules: {
10792
+ "vitest/no-hooks": "off",
10793
+ "vitest/prefer-describe-function-title": "off",
10794
+ "vitest/prefer-expect-assertions": "off"
10795
+ }
10791
10796
  }
10792
10797
  );
10793
10798
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saasmakers/eslint",
3
3
  "type": "module",
4
- "version": "0.1.71",
4
+ "version": "0.1.72",
5
5
  "private": false,
6
6
  "description": "Shared ESLint config and rules for SaaS Makers projects",
7
7
  "author": "SaaS Makers",