@digest/eslint-config 4.13.1 → 4.13.2-next.1

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@digest/eslint-config",
3
3
  "title": "ESLint Digest",
4
4
  "license": "LGPL-3.0-or-later",
5
- "version": "4.13.1",
5
+ "version": "4.13.2-next.1",
6
6
  "description": "Digested ESLint configurations",
7
7
  "author": "wallzero @wallzeroblog (http://wallzero.com)",
8
8
  "contributors": [
@@ -36,19 +36,19 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@digest/scripts": "^4.0.0",
39
- "@eslint/compat": "^1.2.4",
40
- "@eslint/js": "^9.17.0",
41
- "@stylistic/eslint-plugin-js": "^2.12.1",
42
- "eslint": "^9.17.0",
43
- "eslint-config-canonical": "^44.3.37",
39
+ "@eslint/compat": "^1.2.7",
40
+ "@eslint/js": "^9.21.0",
41
+ "@stylistic/eslint-plugin-js": "^4.0.1",
42
+ "eslint": "^9.21.0",
43
+ "eslint-config-canonical": "^44.3.43",
44
44
  "eslint-plugin-canonical": "^5.1.3",
45
45
  "eslint-plugin-import": "^2.31.0",
46
- "globals": "^15.14.0",
47
- "typescript-eslint": "^8.19.1"
46
+ "globals": "^16.0.0",
47
+ "typescript-eslint": "^8.25.0"
48
48
  },
49
49
  "keywords": [
50
50
  "digest",
51
51
  "eslint"
52
52
  ],
53
- "gitHead": "776e1887ba643a465dac3c218105994d45347886"
53
+ "gitHead": "2968cbb1e5970221358926aa429266f7d9c4a13b"
54
54
  }
@@ -19,7 +19,8 @@
19
19
  /*
20
20
  eslint-disable
21
21
  unicorn/prefer-module,
22
- canonical/filename-match-exported
22
+ canonical/filename-match-exported,
23
+ no-unused-vars
23
24
  */
24
25
 
25
26
  const compat = require('@eslint/compat');
@@ -38,6 +39,8 @@ const gitignorePath = path.resolve(__dirname, '.gitignore');
38
39
  const gitignoreExists = fs.existsSync(gitignorePath);
39
40
 
40
41
  const {
42
+ 'import/no-cycle': omit1,
43
+ 'import/no-deprecated': omit2,
41
44
  'import/no-extraneous-dependencies': noExraneousDependencies,
42
45
  ...canonicalFixedRules
43
46
  } = canonical.recommended.rules;