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' } }