From ffd157428cd3279812ea80e767d7ec1ab698ad51 Mon Sep 17 00:00:00 2001 From: Walker Leite Date: Wed, 28 Feb 2018 11:38:33 -0300 Subject: [PATCH] fix(lint): remove import settings --- template/.eslintrc.js | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/template/.eslintrc.js b/template/.eslintrc.js index 7f1b1f4..b6b3699 100644 --- a/template/.eslintrc.js +++ b/template/.eslintrc.js @@ -22,22 +22,5 @@ module.exports = { assert: true, require: true, request: true - }, - // add your custom rules here - rules: { - // disallow reassignment of function parameters - // disallow parameter object manipulation except for specific exclusions - 'no-param-reassign': ['error', - { - props: true, - ignorePropertyModificationsFor: [ - 'state', // for vuex state - 'acc', // for reduce accumulators - 'e' // for e.returnvalue - ] - } - ], - // allow debugger during development - 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off' } }