fix: configure prettier endOfLine to 'auto' for cross-platform compatibility

Addresses Windows CRLF/LF issues by letting Prettier auto-detect line endings.
This commit is contained in:
George Omara 2025-09-26 14:10:22 +03:00
parent 80b2dd93b8
commit 981e27b7cf
1 changed files with 2 additions and 1 deletions

View File

@ -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" }],
},
},
);