increase max-len

This commit is contained in:
Gamebrary 2021-05-10 13:18:53 -07:00
parent 2efa3cbc5d
commit 243f5f3a5b

View file

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