diff --git a/.eslintrc.js b/.eslintrc.js index 524b207a..6b2f7fc8 100755 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -56,15 +56,12 @@ module.exports = { ], }, ], - - // don't require .vue extension when importing 'import/extensions': ['error', 'always', { js: 'never', vue: 'never' }], "indent": ["error", 2], - // disallow reassignment of function parameters - // disallow parameter object manipulation except for specific exclusions + "max-len": ["error", { "code": 180 }], 'no-param-reassign': ['error', { props: true, ignorePropertyModificationsFor: [ @@ -81,5 +78,3 @@ module.exports = { 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off' } } - -