eslint-config-heck 0.1.1 → 0.1.2
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/node.js +2 -14
- package/package.json +1 -1
package/node.js
CHANGED
|
@@ -358,14 +358,7 @@ const rules = {
|
|
|
358
358
|
consistent: true,
|
|
359
359
|
},
|
|
360
360
|
],
|
|
361
|
-
"object-curly-spacing": [
|
|
362
|
-
"error",
|
|
363
|
-
"always",
|
|
364
|
-
{
|
|
365
|
-
arraysInObjects: false,
|
|
366
|
-
objectsInObjects: false,
|
|
367
|
-
},
|
|
368
|
-
],
|
|
361
|
+
"object-curly-spacing": ["error", "always"],
|
|
369
362
|
"object-property-newline": [
|
|
370
363
|
"error",
|
|
371
364
|
{
|
|
@@ -1073,12 +1066,7 @@ const overrides = [
|
|
|
1073
1066
|
"no-useless-constructor": "off",
|
|
1074
1067
|
"@typescript-eslint/no-useless-constructor": "error",
|
|
1075
1068
|
"object-curly-spacing": "off",
|
|
1076
|
-
"@typescript-eslint/object-curly-spacing": [
|
|
1077
|
-
"error", "always", {
|
|
1078
|
-
arraysInObjects: false,
|
|
1079
|
-
objectsInObjects: false,
|
|
1080
|
-
},
|
|
1081
|
-
],
|
|
1069
|
+
"@typescript-eslint/object-curly-spacing": ["error", "always"],
|
|
1082
1070
|
"padding-line-between-statements": "off",
|
|
1083
1071
|
"@typescript-eslint/padding-line-between-statements": [
|
|
1084
1072
|
"error",
|