@saasmakers/eslint 0.1.58 → 0.1.60

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.
@@ -13,15 +13,15 @@ const eslint_config = antfu__default(
13
13
  {
14
14
  typescript: true,
15
15
  unocss: true,
16
- vue: {
17
- a11y: true
18
- }
16
+ vue: true
19
17
  },
20
18
  ...storybook__default.configs["flat/recommended"],
21
19
  // Override rules defined by Antfu ESLint config
20
+ // Try to keep the disabled rules to a minimum
22
21
  {
23
22
  rules: {
24
23
  "antfu/no-top-level-await": "off",
24
+ "node/prefer-global/process": "off",
25
25
  "pnpm/yaml-enforce-settings": "off",
26
26
  "ts/no-use-before-define": "off"
27
27
  }
@@ -6,15 +6,15 @@ var eslint_config = antfu(
6
6
  {
7
7
  typescript: true,
8
8
  unocss: true,
9
- vue: {
10
- a11y: true
11
- }
9
+ vue: true
12
10
  },
13
11
  ...storybook.configs["flat/recommended"],
14
12
  // Override rules defined by Antfu ESLint config
13
+ // Try to keep the disabled rules to a minimum
15
14
  {
16
15
  rules: {
17
16
  "antfu/no-top-level-await": "off",
17
+ "node/prefer-global/process": "off",
18
18
  "pnpm/yaml-enforce-settings": "off",
19
19
  "ts/no-use-before-define": "off"
20
20
  }
@@ -6,15 +6,15 @@ var eslint_config = antfu(
6
6
  {
7
7
  typescript: true,
8
8
  unocss: true,
9
- vue: {
10
- a11y: true
11
- }
9
+ vue: true
12
10
  },
13
11
  ...storybook.configs["flat/recommended"],
14
12
  // Override rules defined by Antfu ESLint config
13
+ // Try to keep the disabled rules to a minimum
15
14
  {
16
15
  rules: {
17
16
  "antfu/no-top-level-await": "off",
17
+ "node/prefer-global/process": "off",
18
18
  "pnpm/yaml-enforce-settings": "off",
19
19
  "ts/no-use-before-define": "off"
20
20
  }
@@ -6,15 +6,15 @@ var eslint_config = antfu(
6
6
  {
7
7
  typescript: true,
8
8
  unocss: true,
9
- vue: {
10
- a11y: true
11
- }
9
+ vue: true
12
10
  },
13
11
  ...storybook.configs["flat/recommended"],
14
12
  // Override rules defined by Antfu ESLint config
13
+ // Try to keep the disabled rules to a minimum
15
14
  {
16
15
  rules: {
17
16
  "antfu/no-top-level-await": "off",
17
+ "node/prefer-global/process": "off",
18
18
  "pnpm/yaml-enforce-settings": "off",
19
19
  "ts/no-use-before-define": "off"
20
20
  }
@@ -6,15 +6,15 @@ const eslint_config = antfu(
6
6
  {
7
7
  typescript: true,
8
8
  unocss: true,
9
- vue: {
10
- a11y: true
11
- }
9
+ vue: true
12
10
  },
13
11
  ...storybook.configs["flat/recommended"],
14
12
  // Override rules defined by Antfu ESLint config
13
+ // Try to keep the disabled rules to a minimum
15
14
  {
16
15
  rules: {
17
16
  "antfu/no-top-level-await": "off",
17
+ "node/prefer-global/process": "off",
18
18
  "pnpm/yaml-enforce-settings": "off",
19
19
  "ts/no-use-before-define": "off"
20
20
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saasmakers/eslint",
3
3
  "type": "module",
4
- "version": "0.1.58",
4
+ "version": "0.1.60",
5
5
  "private": false,
6
6
  "description": "Shared ESLint config and rules for SaaS Makers projects",
7
7
  "author": "SaaS Makers",