Skip to content

Commit f2375ba

Browse files
committed
frontend: change eslint semi to stylistic/semi
@stylistic/semi also catches formatting of types and not just JavaScript.
1 parent c58e217 commit f2375ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontends/web/eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ export default tseslint.config(
3535
'no-trailing-spaces': 'error',
3636
'object-curly-spacing': ['error', 'always'],
3737
'quotes': ['error', 'single'],
38-
'semi': 'error',
3938
'space-before-blocks': ['error', 'always'],
4039
'space-in-parens': ['error', 'never'],
4140
'no-extra-semi': 'error',
@@ -63,6 +62,7 @@ export default tseslint.config(
6362
}],
6463
'@stylistic/type-generic-spacing': ['error'],
6564
'@stylistic/indent': ['error', 2, { "SwitchCase": 0 }],
65+
'@stylistic/semi': ["error", "always"],
6666
},
6767
},
6868
{

0 commit comments

Comments
 (0)