From e7a49f7828f3b5db54a4837f47a44ddccd2e6674 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sat, 18 Jun 2022 01:06:31 +0200 Subject: [PATCH] Change ESLint rule about brace-style --- .eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index bec10fc..5aa7761 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -9,7 +9,7 @@ }, "rules": { "arrow-spacing": ["warn", { "before": true, "after": true }], - "brace-style": ["error", "stroustrup", { "allowSingleLine": true }], + "brace-style": ["error", { "allowSingleLine": true }], "comma-dangle": ["error", "always-multiline"], "comma-spacing": "error", "comma-style": "error",