From 1b06cef160d1d916a65212362424b7aa8d790d9f Mon Sep 17 00:00:00 2001 From: Paul Schreiber Date: Fri, 6 Jul 2018 12:50:12 -0400 Subject: [PATCH] require strict equality checks --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index 33079c9..f69a3d2 100644 --- a/index.js +++ b/index.js @@ -56,6 +56,8 @@ module.exports = { 'comma-style': ['error', 'last'], // Enforce newline at the end of file, with no multiple empty lines 'eol-last': 'error', + // Require strict equality checks + 'eqeqeq': 'error', // Enforces spacing between keys and values in object literal properties 'key-spacing': ['error', { beforeColon: false,