From 0c5d118bfd71a698b95e49a44f8ba95bc43fe84c Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Mon, 7 Jun 2021 15:30:50 +0530 Subject: [PATCH] Add rule to warn on wrong formatting Signed-off-by: RMidhunSuresh --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index 2a14eac6..90c0f3fd 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -13,5 +13,6 @@ module.exports = { "no-empty": "off", "no-prototype-builtins": "off", "no-unused-vars": "warn", + "object-curly-spacing": ["warn", "never"] } };