From 099a3388a1979845a85e67a05bab85c6b4fee517 Mon Sep 17 00:00:00 2001 From: Divlo Date: Wed, 31 Aug 2022 13:44:54 +0200 Subject: [PATCH] feat: add `func-style: "expression"` Ref: https://eslint.org/docs/latest/rules/func-style BREAKING CHANGE: New rule introduced --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index aebba69..cee5929 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -146,6 +146,7 @@ "radix": "error", "yoda": ["error", "never"], "curly": ["error", "all"], + "func-style": ["error", "expression"], "arrow-parens": ["error", "always"], "arrow-body-style": ["error", "always"],