test(web): fix switch case indent lint

This commit is contained in:
Paul Armstrong
2021-02-16 07:08:25 -06:00
committed by Blake Blackshear
parent 496af03be9
commit 78c3c0463a
4 changed files with 59 additions and 59 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ module.exports = {
'valid-typeof': 'error',
camelcase: 'off',
eqeqeq: ['error', 'allow-null'],
indent: ['error', 2],
indent: ['error', 2, { SwitchCase: 1 }],
quotes: ['error', 'single', 'avoid-escape'],
radix: 'error',
yoda: ['error', 'never'],