@naturalcycles/dev-lib 19.34.2 → 19.36.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.
@@ -430,6 +430,7 @@ export default {
430
430
  '@typescript-eslint/no-unsafe-argument': 0, // prevents "legit" use of `any`
431
431
  'unicorn/prefer-export-from': 0, // breaks auto-imports in IntelliJ Idea
432
432
  'unicorn/no-await-expression-member': 0, // some cases are better as-is
433
+ 'unicorn/no-array-sort': 0,
433
434
  'unicorn/prefer-json-parse-buffer': 0, // typescript doesn't allow it
434
435
  'no-constructor-return': 2,
435
436
  // 'no-promise-executor-return': 2,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
3
  "type": "module",
4
- "version": "19.34.2",
4
+ "version": "19.36.0",
5
5
  "dependencies": {
6
6
  "@biomejs/biome": "^2",
7
7
  "@commitlint/cli": "^19",
@@ -15,9 +15,9 @@
15
15
  "@vitest/eslint-plugin": "^1",
16
16
  "eslint": "^9",
17
17
  "eslint-plugin-import-x": "^4",
18
- "eslint-plugin-jsdoc": "^54",
18
+ "eslint-plugin-jsdoc": "^55",
19
19
  "eslint-plugin-simple-import-sort": "^12",
20
- "eslint-plugin-unicorn": "^60",
20
+ "eslint-plugin-unicorn": "^61",
21
21
  "eslint-plugin-vue": "^10",
22
22
  "globals": "^16",
23
23
  "lint-staged": "^16",
@@ -103,7 +103,7 @@
103
103
  "test-leaks": "tsx ./src/bin/dev-lib.ts test-leaks",
104
104
  "test-integration": "tsx ./src/bin/dev-lib.ts test-integration",
105
105
  "test-manual": "tsx ./src/bin/dev-lib.ts test-manual",
106
- "lint": "tsx ./src/bin/dev-lib.ts lint",
106
+ "lint": "tsx scripts/eslintPrintConfig.script.ts && tsx ./src/bin/dev-lib.ts lint",
107
107
  "eslint": "tsx ./src/bin/dev-lib.ts eslint",
108
108
  "eslint-no-fix": "tsx ./src/bin/dev-lib.ts eslint-no-fix",
109
109
  "biome-no-fix": "tsx ./src/bin/dev-lib.ts biome-no-fix",