@markuplint-dev/eslint-config 1.0.19 → 4.18.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,20 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [4.18.0](https://github.com/markuplint/markuplint/compare/v4.14.1...v4.18.0) (2026-04-22)
7
+
8
+ ### Bug Fixes
9
+
10
+ - disable unicorn/no-array-sort rule and fix no-immediate-mutation ([bf76be2](https://github.com/markuplint/markuplint/commit/bf76be26478aa2a03528f9182cb11d123b44db44))
11
+ - resolve additional eslint-plugin-unicorn v63 errors ([e58a72c](https://github.com/markuplint/markuplint/commit/e58a72c17c97bbec522f9513b99777fac6904d64))
12
+
13
+ ## [1.0.20](https://github.com/markuplint/markuplint/compare/@markuplint-dev/eslint-config@1.0.19...@markuplint-dev/eslint-config@1.0.20) (2026-04-21)
14
+
15
+ ### Bug Fixes
16
+
17
+ - disable unicorn/no-array-sort rule and fix no-immediate-mutation ([bf76be2](https://github.com/markuplint/markuplint/commit/bf76be26478aa2a03528f9182cb11d123b44db44))
18
+ - resolve additional eslint-plugin-unicorn v63 errors ([e58a72c](https://github.com/markuplint/markuplint/commit/e58a72c17c97bbec522f9513b99777fac6904d64))
19
+
6
20
  ## [1.0.19](https://github.com/markuplint/markuplint/compare/@markuplint-dev/eslint-config@1.0.18...@markuplint-dev/eslint-config@1.0.19) (2026-02-10)
7
21
 
8
22
  **Note:** Version bump only for package @markuplint-dev/eslint-config
package/base.js CHANGED
@@ -85,10 +85,11 @@ export const base = [
85
85
  'import-x/resolver-next': [createTypeScriptImportResolver()],
86
86
  },
87
87
  },
88
- // for Node.js v18
88
+ // for Node.js v18 — TODO: Re-enable in v5 when dropping Node.js 18 support (#3144)
89
89
  {
90
90
  rules: {
91
91
  'unicorn/no-array-reverse': 0,
92
+ 'unicorn/no-array-sort': 0,
92
93
  },
93
94
  },
94
95
  ];
package/index.js CHANGED
@@ -70,5 +70,6 @@ function mergeConfig(...configs) {
70
70
  },
71
71
  };
72
72
  }
73
+ // eslint-disable-next-line unicorn/no-array-reduce
73
74
  return configs.reduce(mergeConfig);
74
75
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint-dev/eslint-config",
3
- "version": "1.0.19",
3
+ "version": "4.18.0",
4
4
  "description": "ESLint and config for Markuplint projects",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -11,21 +11,21 @@
11
11
  "access": "public"
12
12
  },
13
13
  "dependencies": {
14
- "@eslint-community/eslint-plugin-eslint-comments": "4.6.0",
15
- "@eslint/compat": "2.0.2",
14
+ "@eslint-community/eslint-plugin-eslint-comments": "4.7.1",
15
+ "@eslint/compat": "2.0.5",
16
16
  "@eslint/js": "10.0.1",
17
- "@typescript-eslint/eslint-plugin": "8.54.0",
18
- "@typescript-eslint/parser": "8.54.0",
19
- "eslint": "10.0.0",
17
+ "@typescript-eslint/eslint-plugin": "8.59.0",
18
+ "@typescript-eslint/parser": "8.59.0",
19
+ "eslint": "10.2.1",
20
20
  "eslint-import-resolver-typescript": "4.4.4",
21
- "eslint-plugin-import-x": "4.16.1",
22
- "eslint-plugin-jsdoc": "62.5.4",
23
- "eslint-plugin-n": "17.23.2",
24
- "eslint-plugin-regexp": "3.0.0",
25
- "eslint-plugin-sort-class-members": "1.21.0",
26
- "eslint-plugin-unicorn": "60.0.0",
27
- "globals": "17.3.0",
28
- "typescript-eslint": "8.54.0"
21
+ "eslint-plugin-import-x": "4.16.2",
22
+ "eslint-plugin-jsdoc": "62.9.0",
23
+ "eslint-plugin-n": "17.24.0",
24
+ "eslint-plugin-regexp": "3.1.0",
25
+ "eslint-plugin-sort-class-members": "1.22.1",
26
+ "eslint-plugin-unicorn": "64.0.0",
27
+ "globals": "17.5.0",
28
+ "typescript-eslint": "8.59.0"
29
29
  },
30
- "gitHead": "193ee7c1262bbed95424e38efdf1a8e56ff049f4"
30
+ "gitHead": "1885af6349def3f19df975b9e9c399dd47361de1"
31
31
  }