aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-13 22:51:19 +0300
committerValentin Popov <info@valentineus.link>2020-02-13 22:51:19 +0300
commit649ad0f879ac873bec652b2c71dc0fe27e787920 (patch)
treebdf5bd089c719f4e60e36e0936569f41d242ff7d
parent320dab004aa7fb166b73329a11872f8935135e4e (diff)
downloadeslint-config-649ad0f879ac873bec652b2c71dc0fe27e787920.tar.xz
eslint-config-649ad0f879ac873bec652b2c71dc0fe27e787920.zip
feat(eslint): Rule "object-property-newline"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r--ROADMAP.md2
-rw-r--r--src/rules/default.json6
2 files changed, 7 insertions, 1 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
index e50f86b..da55dc5 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -224,7 +224,7 @@
- [ ] "nonblock-statement-body-position"
- [X] "object-curly-newline"
- [X] "object-curly-spacing"
-- [ ] "object-property-newline"
+- [X] "object-property-newline"
- [ ] "object-shorthand"
- [X] "one-var"
- [ ] "one-var-declaration-per-line"
diff --git a/src/rules/default.json b/src/rules/default.json
index 7a6f64b..249b189 100644
--- a/src/rules/default.json
+++ b/src/rules/default.json
@@ -285,6 +285,12 @@
"objectsInObjects": false
}
],
+ "object-property-newline": [
+ "error",
+ {
+ "allowAllPropertiesOnSameLine": false
+ }
+ ],
"one-var": [
"error",
"never"