From 0cd823c30078b3f097a91052cc7dfde74f289c0d Mon Sep 17 00:00:00 2001 From: "Xin Du (Clark)" Date: Sat, 27 Jul 2019 22:30:50 +0100 Subject: [PATCH] chore: turn on no-console and no-debugger (#6145) --- .eslintrc.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index 428eefc3b7..39dce90b06 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -13,6 +13,10 @@ module.exports = { "globals": { "BigInt": true }, + rules: { + 'no-console': 'error', + 'no-debugger': 'error' + }, overrides: [{ files: [ 'test/fixtures/*/.nuxt*/**' ], rules: {