Increase max length to 100
This commit is contained in:
@@ -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,
|
||||||
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
{
|
{
|
||||||
"singleQuote": true,
|
"singleQuote": true,
|
||||||
"trailingComma": "all",
|
"trailingComma": "all"
|
||||||
"printWidth": 80
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user