Merge pull request #337 from omarageorge/fix/windows-eol-prettier

fix: configure prettier endOfLine to 'auto' for cross-platform compatibility
This commit is contained in:
Kamil Mysliwiec 2025-10-10 14:23:41 +02:00 committed by GitHub
commit c60a7925cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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" }],
},
},
);