From 3f1d1921bab45504b1ca08370a88a245465b9534 Mon Sep 17 00:00:00 2001 From: Divlo Date: Wed, 31 Aug 2022 13:27:37 +0200 Subject: [PATCH] feat: add `arrow-body-style: "always"` Ref: https://eslint.org/docs/latest/rules/arrow-body-style BREAKING CHANGE: New rule introduced --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index e494076..2ca04a7 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -147,6 +147,7 @@ "yoda": ["error", "never"], "curly": ["error", "all"], "arrow-parens": ["error", "always"], + "arrow-body-style": ["error", "always"], "import/no-absolute-path": "error", "import/no-webpack-loader-syntax": "error",