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:
parent
80b2dd93b8
commit
981e27b7cf
|
|
@ -28,7 +28,8 @@ export default tseslint.config(
|
||||||
rules: {
|
rules: {
|
||||||
'@typescript-eslint/no-explicit-any': 'off',
|
'@typescript-eslint/no-explicit-any': 'off',
|
||||||
'@typescript-eslint/no-floating-promises': 'warn',
|
'@typescript-eslint/no-floating-promises': 'warn',
|
||||||
'@typescript-eslint/no-unsafe-argument': 'warn'
|
'@typescript-eslint/no-unsafe-argument': 'warn',
|
||||||
|
"prettier/prettier": ["error", { endOfLine: "auto" }],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
Loading…
Reference in New Issue