From 2a50ed078b21fab8cbcc26ec3b2b0ef3bed81a29 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Sun, 27 Sep 2020 16:14:27 -0600 Subject: [PATCH] Disable eslint rules that I hate --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 8ad90db..daf7b38 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -12,6 +12,7 @@ module.exports = { }, rules: { 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', - 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off' + 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', + 'no-extra-semi': 'off' } }