From 72d16a1996f83b523c79f55b8313e28f0966852a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A6=BE=E5=87=A0=E6=B5=B7?= Date: Fri, 2 Dec 2022 00:48:28 +0800 Subject: [PATCH] chore: disable @angular-eslint/template/eqeqeq lint --- .eslintrc.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index dc91860..0957042 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -52,6 +52,7 @@ "style": "camelCase" } ], + "@typescript-eslint/explicit-member-accessibility": [ "off", { @@ -78,7 +79,9 @@ "extends": [ "plugin:@angular-eslint/template/recommended" ], - "rules": {} + "rules": { + "@angular-eslint/template/eqeqeq": "off" + } } ] }