From f138acaf538a36ca1a7fa0b7dc38a694c0f1d876 Mon Sep 17 00:00:00 2001 From: Divlo Date: Wed, 31 Aug 2022 13:22:20 +0200 Subject: [PATCH] feat: add `curly: "all"` Ref: https://eslint.org/docs/latest/rules/curly BREAKING CHANGE: New rule introduced --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index 2c6eca2..41d0d18 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -145,6 +145,7 @@ "quote-props": ["error", "as-needed"], "radix": "error", "yoda": ["error", "never"], + "curly": ["error", "all"], "import/no-absolute-path": "error", "import/no-webpack-loader-syntax": "error",