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:
commit
c60a7925cc
|
|
@ -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" }],
|
||||
},
|
||||
},
|
||||
);
|
||||
Loading…
Reference in New Issue