@digest/eslint-config 4.14.0 → 4.14.2-beta.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.14.0",
5
+ "version": "4.14.2-beta.1",
6
6
  "description": "Digested ESLint configurations",
7
7
  "author": "wallzero @wallzeroblog (http://wallzero.com)",
8
8
  "contributors": [
@@ -37,19 +37,19 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@digest/scripts": "^4.0.0",
40
- "@eslint/compat": "^1.2.7",
41
- "@eslint/js": "^9.23.0",
40
+ "@eslint/compat": "^1.2.9",
41
+ "@eslint/js": "^9.26.0",
42
42
  "@stylistic/eslint-plugin-js": "^4.2.0",
43
- "eslint": "^9.23.0",
44
- "eslint-config-canonical": "^44.8.2",
43
+ "eslint": "^9.26.0",
44
+ "eslint-config-canonical": "^44.9.5",
45
45
  "eslint-plugin-canonical": "^5.1.3",
46
46
  "eslint-plugin-import": "^2.31.0",
47
- "globals": "^16.0.0",
48
- "typescript-eslint": "^8.27.0"
47
+ "globals": "^16.1.0",
48
+ "typescript-eslint": "^8.32.1"
49
49
  },
50
50
  "keywords": [
51
51
  "digest",
52
52
  "eslint"
53
53
  ],
54
- "gitHead": "1f8cde9bea8dd20639ec31c065532b99b05935e8"
54
+ "gitHead": "47cb6e04cd65b61b34056626e71a0966bedce58c"
55
55
  }
@@ -122,6 +122,8 @@ const generalConfigs = [
122
122
  canonicalRegExp[0],
123
123
  canonicalJSDoc[0],
124
124
  canonicalLodash[0],
125
+ // Disable until json memory heap issue fixed
126
+ /*
125
127
  {
126
128
  ...canonicalJSON[0],
127
129
  rules: canonicalJSONFixedRules
@@ -129,12 +131,12 @@ const generalConfigs = [
129
131
  {
130
132
  ...canonicalJSON[0],
131
133
  ignores: [
132
- '**/package.json'
134
+ '**\/package.json'
133
135
  ],
134
136
  rules: {
135
137
  'jsonc/sort-keys': sortKeys
136
138
  }
137
- }
139
+ }*/
138
140
  ]
139
141
  ].flat();
140
142