From 353891c24b195905af5f86ac384a98bb1e52dd9a Mon Sep 17 00:00:00 2001 From: zanminkian Date: Tue, 25 Jul 2023 02:09:30 +0000 Subject: [PATCH] fix: disallow single line --- .eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 5d6c3317..9fc97dbc 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -36,7 +36,7 @@ }], "arrow-spacing": ["error", { "before": true, "after": true }], "block-spacing": ["error", "always"], - "brace-style": ["error", "1tbs", { "allowSingleLine": true }], + "brace-style": ["error", "1tbs", { "allowSingleLine": false }], "camelcase": ["error", { "allow": ["^UNSAFE_"], "properties": "never",