@digest/eslint-config 4.14.0 → 4.14.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.
|
|
5
|
+
"version": "4.14.1",
|
|
6
6
|
"description": "Digested ESLint configurations",
|
|
7
7
|
"author": "wallzero @wallzeroblog (http://wallzero.com)",
|
|
8
8
|
"contributors": [
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"digest",
|
|
52
52
|
"eslint"
|
|
53
53
|
],
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "a1a6a7ca0706fc38df5057e0b82ad71cd605cd14"
|
|
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
|
-
'
|
|
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
|
|