test(web): fix switch case indent lint

This commit is contained in:
Paul Armstrong 2021-02-11 07:16:35 -08:00
parent aa7df6cd1f
commit 566c8fa6ac
No known key found for this signature in database
GPG Key ID: 1F24DA6C38E1FE4A
4 changed files with 59 additions and 59 deletions

View File

@ -111,7 +111,7 @@ module.exports = {
'valid-typeof': 'error', 'valid-typeof': 'error',
camelcase: 'off', camelcase: 'off',
eqeqeq: ['error', 'allow-null'], eqeqeq: ['error', 'allow-null'],
indent: ['error', 2], indent: ['error', 2, { SwitchCase: 1 }],
quotes: ['error', 'single', 'avoid-escape'], quotes: ['error', 'single', 'avoid-escape'],
radix: 'error', radix: 'error',
yoda: ['error', 'never'], yoda: ['error', 'never'],