From 1a2b513e8c73136acc63df0c6290d69b1487d950 Mon Sep 17 00:00:00 2001 From: Manuel <5673677+mtrezza@users.noreply.github.com> Date: Tue, 19 Mar 2024 22:32:27 +0100 Subject: [PATCH] ci: Add lint rule for curly braces (#9032) --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index c04e2d31..ac68f77d 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -24,7 +24,8 @@ "prefer-const": "error", "space-infix-ops": "error", "no-useless-escape": "off", - "require-atomic-updates": "off" + "require-atomic-updates": "off", + "object-curly-spacing": ["error", "always"] }, "globals": { "Parse": true