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