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', 'warn',
'windows' 'windows'
], ],
'prefer-const': [
'error',
{
'destructuring': 'any',
'ignoreReadBeforeAssign': false
}
],
'quotes': [ 'quotes': [
'error', 'error',
'single' 'single'
@ -25,12 +32,5 @@ module.exports = {
'error', 'error',
'always' 'always'
], ],
'prefer-const': [
'error',
{
'destructuring': 'any',
'ignoreReadBeforeAssign': false
}
]
} }
}; };