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.
Files changed (2) hide show
  1. package/node.js +2 -14
  2. 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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-heck",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Contains an ESLint configuration for ES2015+, TypeScript, and React.",
5
5
  "main": "index.js",
6
6
  "scripts": {