From 38732af907f44b63cd8305ab5cbe868ba21f97ca Mon Sep 17 00:00:00 2001 From: Steve Faulkner Date: Fri, 21 Aug 2020 19:51:36 -0500 Subject: [PATCH] Triple equal lint rule (#162) --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index bbc9fcc46..cb7e34f01 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -41,6 +41,7 @@ module.exports = { "@typescript-eslint/no-extraneous-class": "error", "no-null/no-null": "error", "@typescript-eslint/no-explicit-any": "error", - "prefer-arrow/prefer-arrow-functions": ["error", { allowStandaloneDeclarations: true }] + "prefer-arrow/prefer-arrow-functions": ["error", { allowStandaloneDeclarations: true }], + eqeqeq: "error" } };