From 1f2abae30592d3b8de6033e58c07741733935fc3 Mon Sep 17 00:00:00 2001 From: RyotaUshio Date: Thu, 21 Dec 2023 16:39:44 +0900 Subject: [PATCH] update eslint no-inferrable-type rule --- .eslintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index b7a99df..21146e4 100644 --- a/.eslintrc +++ b/.eslintrc @@ -20,6 +20,6 @@ "no-prototype-builtins": "off", "@typescript-eslint/no-empty-function": "off", "@typescript-eslint/no-this-alias": "off", - "@typescript-eslint/no-inferrable-types": "off" + "@typescript-eslint/no-inferrable-types": ["error", { "ignoreParameters": true, "ignoreProperties": true }] } }