From bc1e024287998538ebc2af8074c4574e1cb0b8ec Mon Sep 17 00:00:00 2001 From: Brian Chen Date: Wed, 15 Dec 2021 08:51:39 +1100 Subject: [PATCH] disable no continue rule --- index.js | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 8805418..0e3daec 100644 --- a/index.js +++ b/index.js @@ -66,6 +66,7 @@ module.exports = { 'jsx-a11y/click-events-have-key-events': 0, 'jsx-a11y/no-noninteractive-element-interactions': 0, 'no-console': ['warn', { allow: ['warn', 'error', 'info'] }], + 'no-continue': 0, 'no-underscore-dangle': 0, 'no-unused-expressions': ['error', { allowShortCircuit: true, allowTernary: true }], 'no-plusplus': ['error', { allowForLoopAfterthoughts: true }], diff --git a/package.json b/package.json index 415f1aa..44c9827 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "eslint-config-bzc", "description": "Eslint Config for my personal and professional projects", - "version": "1.0.4", + "version": "1.0.5", "main": "index.js", "repository": "git@github.com:Brianzchen/eslint-config-bzc.git", "author": "Brian Chen",