From 981e27b7cf751aed917d94ec08589b5376a65ede Mon Sep 17 00:00:00 2001 From: George Omara Date: Fri, 26 Sep 2025 14:10:22 +0300 Subject: [PATCH] fix: configure prettier endOfLine to 'auto' for cross-platform compatibility Addresses Windows CRLF/LF issues by letting Prettier auto-detect line endings. --- eslint.config.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index caebf6e70..f0e9a1f2b 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -28,7 +28,8 @@ export default tseslint.config( rules: { '@typescript-eslint/no-explicit-any': 'off', '@typescript-eslint/no-floating-promises': 'warn', - '@typescript-eslint/no-unsafe-argument': 'warn' + '@typescript-eslint/no-unsafe-argument': 'warn', + "prettier/prettier": ["error", { endOfLine: "auto" }], }, }, ); \ No newline at end of file