mirror of
https://github.com/romancm/gamebrary
synced 2024-11-23 19:53:14 +00:00
increase max-len
This commit is contained in:
parent
2efa3cbc5d
commit
243f5f3a5b
1 changed files with 1 additions and 6 deletions
|
@ -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'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue