Increase max length to 100

This commit is contained in:
Daniël van Noord
2021-03-28 14:53:20 +02:00
parent f506cb136e
commit fb0f9c3bf3
2 changed files with 10 additions and 2 deletions

View File

@@ -23,5 +23,14 @@ module.exports = {
'no-alert': 'off', 'no-alert': 'off',
'no-restricted-globals': 'off', 'no-restricted-globals': 'off',
'prefer-destructuring': ['error', { object: true, array: false }], 'prefer-destructuring': ['error', { object: true, array: false }],
'max-len': [
1,
{
code: 100,
ignoreComments: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
},
],
}, },
}; };

View File

@@ -1,5 +1,4 @@
{ {
"singleQuote": true, "singleQuote": true,
"trailingComma": "all", "trailingComma": "all"
"printWidth": 80
} }