aboutsummaryrefslogtreecommitdiff
path: root/src/rules
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-13 15:19:27 +0300
committerValentin Popov <info@valentineus.link>2020-02-13 15:19:27 +0300
commit55d7364ea2b36802f58921242ee86bc6471fe08c (patch)
tree42e915c9f7e3f9f8cc613c16a93bd3757de58b3c /src/rules
parent90014ad8f6e70454d40614ab4ce53788ff558b7e (diff)
downloadeslint-config-55d7364ea2b36802f58921242ee86bc6471fe08c.tar.xz
eslint-config-55d7364ea2b36802f58921242ee86bc6471fe08c.zip
feat(eslint): Rule "object-curly-newline"
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'src/rules')
-rw-r--r--src/rules/eslint.json8
1 files changed, 8 insertions, 0 deletions
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",