Skip to content

Commit d297fc4

Browse files
committed
fix: ESLint issues (refs #1)
1 parent d799bb2 commit d297fc4

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

eslint.config.mjs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,13 @@ export default tseslint.config(
2828
rules: {
2929
'@typescript-eslint/no-explicit-any': 'off',
3030
'@typescript-eslint/no-floating-promises': 'warn',
31-
'@typescript-eslint/no-unsafe-argument': 'warn'
31+
'@typescript-eslint/no-unsafe-argument': 'warn',
32+
'prettier/prettier': [
33+
'error',
34+
{
35+
endOfLine: 'auto',
36+
},
37+
],
3238
},
3339
},
34-
);
40+
);

0 commit comments

Comments
 (0)