aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-06-18 10:37:31 +0300
committerValentin Popov <info@valentineus.link>2020-06-18 10:37:31 +0300
commit58e080f2e77b405ad12765f62b3945fa0f776ef6 (patch)
treede0c1e7f01e7bd5a014a36386f4cf768ca185091
parenta5019ebc60f877c36f16b4a87c0cbd9b48d38873 (diff)
downloadeslint-config-58e080f2e77b405ad12765f62b3945fa0f776ef6.tar.xz
eslint-config-58e080f2e77b405ad12765f62b3945fa0f776ef6.zip
Fixed "object-curly-newline"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r--src/rules/javascript/default.json8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rules/javascript/default.json b/src/rules/javascript/default.json
index 34e1d8f..0ec323c 100644
--- a/src/rules/javascript/default.json
+++ b/src/rules/javascript/default.json
@@ -454,18 +454,18 @@
{
"ExportDeclaration": {
"consistent": true,
- "minProperties": 1,
+ "minProperties": 5,
"multiline": true
},
"ImportDeclaration": "never",
"ObjectExpression": {
"consistent": true,
- "minProperties": 1,
+ "minProperties": 5,
"multiline": true
},
"ObjectPattern": {
"consistent": true,
- "minProperties": 1,
+ "minProperties": 5,
"multiline": true
}
}
@@ -638,4 +638,4 @@
"onlyEquality": false
}
]
-} \ No newline at end of file
+}