@mscharley/eslint-config 4.2.15 → 4.2.17

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,51 @@
1
1
  # Change Log - @mscharley/eslint-config
2
2
 
3
+ ## 4.2.17
4
+
5
+ ### Patch Changes
6
+
7
+ - dc7a698: fix(deps): update dependency typescript-eslint to ^8.39.1
8
+
9
+ Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
10
+
11
+ - baf514e: fix(deps): update dependency typescript-eslint to ^8.40.0
12
+
13
+ Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
14
+
15
+ - e4eaf56: Add n/no-sync to the list of packages to exclude as a typechecked rule
16
+
17
+ ## 4.2.16
18
+
19
+ ### Patch Changes
20
+
21
+ - 9c1e002: fix(deps): update eslint packages
22
+
23
+ Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
24
+
25
+ - ab504df: fix(deps): update eslint packages
26
+
27
+ Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
28
+
29
+ - 01e1e60: fix(deps): update dependency @stylistic/eslint-plugin to ^5.2.0
30
+
31
+ Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
32
+
33
+ - df85ee8: fix(deps): update eslint packages
34
+
35
+ Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
36
+
37
+ - 042cd5b: fix(deps): update eslint packages
38
+
39
+ Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
40
+
41
+ - da958ed: fix(deps): update dependency typescript-eslint to ^8.39.0
42
+
43
+ Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
44
+
45
+ - 469beee: fix(deps): update eslint packages
46
+
47
+ Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
48
+
3
49
  ## 4.2.15
4
50
 
5
51
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mscharley/eslint-config",
3
- "version": "4.2.15",
3
+ "version": "4.2.17",
4
4
  "type": "module",
5
5
  "module": "./rules/index.js",
6
6
  "exports": {
@@ -31,18 +31,18 @@
31
31
  },
32
32
  "homepage": "https://github.com/mscharley/node-presets#readme",
33
33
  "dependencies": {
34
- "@eslint/js": "^9.29.0",
35
- "@stylistic/eslint-plugin": "^5.0.0",
34
+ "@eslint/js": "^9.33.0",
35
+ "@stylistic/eslint-plugin": "^5.2.3",
36
36
  "@types/eslint": "^9.6.1",
37
- "eslint": "^9.29.0",
37
+ "eslint": "^9.33.0",
38
38
  "eslint-import-resolver-typescript": "^4.4.4",
39
39
  "eslint-plugin-import": "^2.32.0",
40
40
  "eslint-plugin-jest": "^29.0.1",
41
- "eslint-plugin-n": "^17.20.0",
41
+ "eslint-plugin-n": "^17.21.3",
42
42
  "eslint-plugin-notice": "^1.0.0",
43
43
  "eslint-plugin-react": "^7.37.5",
44
44
  "eslint-plugin-react-hooks": "^5.2.0",
45
- "typescript-eslint": "^8.35.0"
45
+ "typescript-eslint": "^8.40.0"
46
46
  },
47
47
  "scripts": {
48
48
  "test": "eslint --max-warnings 0 ."
@@ -1,5 +1,6 @@
1
1
  import { configs as tseslint } from 'typescript-eslint';
2
2
 
3
+ /** @type (files: string[]) => import('eslint').Config */
3
4
  export const disableTypeCheckedRules = (...files) => ({
4
5
  files,
5
6
  ...tseslint.disableTypeChecked,
@@ -7,6 +8,7 @@ export const disableTypeCheckedRules = (...files) => ({
7
8
  ...tseslint.disableTypeChecked.rules,
8
9
  '@typescript-eslint/explicit-function-return-type': 'off',
9
10
  '@typescript-eslint/explicit-module-boundary-types': 'off',
11
+ 'n/no-sync': 'off',
10
12
  },
11
13
  });
12
14