From 436a4d76454e065474f14a98f6e3a13f862e5535 Mon Sep 17 00:00:00 2001 From: Yury Bondarenko Date: Tue, 27 Jun 2023 17:26:13 +0200 Subject: [PATCH] ESLint: enforce object-curly-spacing https://eslint.org/docs/latest/rules/object-curly-spacing --- .eslintrc.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.eslintrc.json b/.eslintrc.json index 70a2a657d2..44b9e0c5ef 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -49,6 +49,10 @@ "error", "always-multiline" ], + "object-curly-spacing": [ + "error", + "always" + ], "eol-last": [ "error", "always"