This commit is contained in:
Isaac 2021-05-20 19:06:42 +01:00
parent 740202d1e1
commit b0e29be1b5
No known key found for this signature in database
GPG Key ID: F6812DBC6719B4E3

View File

@ -17,6 +17,13 @@ module.exports = {
'warn',
'windows'
],
'prefer-const': [
'error',
{
'destructuring': 'any',
'ignoreReadBeforeAssign': false
}
],
'quotes': [
'error',
'single'
@ -25,12 +32,5 @@ module.exports = {
'error',
'always'
],
'prefer-const': [
'error',
{
'destructuring': 'any',
'ignoreReadBeforeAssign': false
}
]
}
};