diff --git a/.eslintrc b/.eslintrc index 59b0182..c2213f5 100644 --- a/.eslintrc +++ b/.eslintrc @@ -63,7 +63,7 @@ "no-useless-constructor": "warn", "no-useless-rename": "error", "no-var": "error", - "object-curly-newline": ["error", { "ObjectExpression": {"minProperties": 2 }}], + "object-curly-newline": ["error", { "consistent": true }] "object-property-newline": ["error", { "allowAllPropertiesOnSameLine": false }], "one-var": ["error", { "initialized": "never" }], "one-var-declaration-per-line": ["error", "always"], diff --git a/CHANGELOG.md b/CHANGELOG.md index ce9572b..9e0f952 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +### [4.1.1](https://github.com/ravorona/eslint-config/compare/4.1.0...4.1.1) (2022-11-14) + + +### Features + +* object-curly-newline rule use consistent ([3f05479](https://github.com/ravorona/eslint-config/commit/3f05479a08fb6f6a39352a944d1737ceed9fecb9)) + ## [4.1.0](https://github.com/ravorona/eslint-config/compare/4.0.5...4.1.0) (2022-11-14) diff --git a/package.json b/package.json index b0e8ac7..b8034df 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ravorona/eslint-config", - "version": "4.1.0", + "version": "4.1.1", "description": "ESLint configuration", "main": ".eslintrc", "repository": "git@github.com:ravorona/eslint-config.git",