Skip to content

Commit c60a792

Browse files
Merge pull request #337 from omarageorge/fix/windows-eol-prettier
fix: configure prettier endOfLine to 'auto' for cross-platform compatibility
2 parents 80b2dd9 + 981e27b commit c60a792

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

eslint.config.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ 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": ["error", { endOfLine: "auto" }],
3233
},
3334
},
3435
);

0 commit comments

Comments
 (0)