diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 22:51:19 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 22:51:19 +0300 |
commit | 649ad0f879ac873bec652b2c71dc0fe27e787920 (patch) | |
tree | bdf5bd089c719f4e60e36e0936569f41d242ff7d | |
parent | 320dab004aa7fb166b73329a11872f8935135e4e (diff) | |
download | eslint-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.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 6 |
2 files changed, 7 insertions, 1 deletions
@@ -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" |