@w5s/eslint-config 2.3.1 → 2.4.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.
@@ -29,6 +29,12 @@ const config = dev_1.ESLintConfig.concat({
29
29
  },
30
30
  },
31
31
  },
32
+ // NodeJS loose config
33
+ {
34
+ rules: {
35
+ 'n/no-sync': 'off',
36
+ },
37
+ },
32
38
  /**
33
39
  * Unicorn less strict to help writing tests
34
40
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@w5s/eslint-config",
3
- "version": "2.3.1",
3
+ "version": "2.4.0",
4
4
  "description": "ESLint configuration presets",
5
5
  "keywords": [
6
6
  "eslint",
@@ -36,7 +36,7 @@
36
36
  "@rushstack/eslint-patch": "^1.1.0",
37
37
  "@typescript-eslint/eslint-plugin": "^8.0.0",
38
38
  "@typescript-eslint/parser": "^8.0.0",
39
- "@w5s/dev": "^2.3.0",
39
+ "@w5s/dev": "^2.4.0",
40
40
  "@w5s/prettier-config": "^2.2.6",
41
41
  "eslint-config-airbnb-base": "^15.0.0",
42
42
  "eslint-config-prettier": "^9.0.0",
@@ -72,5 +72,5 @@
72
72
  "access": "public"
73
73
  },
74
74
  "sideEffect": false,
75
- "gitHead": "371fc117c215602701c76d95394a55784905fa61"
75
+ "gitHead": "e45ab63ec78541b376bcb56a4b3ab02e41f3960a"
76
76
  }
package/src/rules/jest.ts CHANGED
@@ -32,6 +32,12 @@ const config: eslint.Linter.Config = ESLintConfig.concat(
32
32
  },
33
33
  },
34
34
  },
35
+ // NodeJS loose config
36
+ {
37
+ rules: {
38
+ 'n/no-sync': 'off',
39
+ },
40
+ },
35
41
  /**
36
42
  * Unicorn less strict to help writing tests
37
43
  */