1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Add default-case-last rule and fix issues

This commit is contained in:
Bill Thornton 2022-03-10 11:46:58 -05:00
parent 4a8806e1f6
commit f4754422e6
2 changed files with 3 additions and 2 deletions

View file

@ -37,6 +37,7 @@ module.exports = {
'brace-style': ['error', '1tbs', { 'allowSingleLine': true }],
'comma-dangle': ['error', 'never'],
'comma-spacing': ['error'],
'default-case-last': ['error'],
'eol-last': ['error'],
'indent': ['error', 4, { 'SwitchCase': 1 }],
'jsx-quotes': ['error', 'prefer-single'],