From 6b804e2c9d3d787659a3718b393edf391abecf5e Mon Sep 17 00:00:00 2001 From: Bobby Wibowo Date: Fri, 8 Jan 2021 10:59:10 +0700 Subject: [PATCH] style: removed throw/cb literal lint rules --- .eslintrc.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 41eeeaa..eccc204 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -10,11 +10,9 @@ module.exports = { 'standard' ], rules: { - 'no-throw-literal': 0, 'object-shorthand': [ 'error', 'always' - ], - 'node/no-callback-literal': 0 + ] } }