summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ROADMAP.md2
-rw-r--r--src/rules/eslint.json8
2 files changed, 9 insertions, 1 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
index dc707a9..58b7e78 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -222,7 +222,7 @@
- [ ] "no-whitespace-before-property"
- [ ] "no-with"
- [ ] "nonblock-statement-body-position"
-- [ ] "object-curly-newline"
+- [X] "object-curly-newline"
- [X] "object-curly-spacing"
- [ ] "object-property-newline"
- [ ] "object-shorthand"
diff --git a/src/rules/eslint.json b/src/rules/eslint.json
index adb6db2..10b053b 100644
--- a/src/rules/eslint.json
+++ b/src/rules/eslint.json
@@ -108,6 +108,14 @@
"allowIndentationTabs": true
}
],
+ "object-curly-newline": [
+ "error",
+ {
+ "consistent": true,
+ "minProperties": 2,
+ "multiline": true
+ }
+ ],
"object-curly-spacing": [
"error",
"always",