We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.gitattributes
Prettier formats files with line endings of lf, which causes problems for Windows developers who have autocrlf enabled. (See https://prettier.io/docs/en/options#end-of-line)
lf
autocrlf
There needs to be a .gitattributes file with * text=auto eol=lf to disable the autocrlf.
* text=auto eol=lf
The text was updated successfully, but these errors were encountered:
(I didn't bother adding this to #450 since it would result in a bunch of files being changed)
Sorry, something went wrong.
Sounds good to me! Could you make a PR please?
.gitignore
Successfully merging a pull request may close this issue.
Prettier formats files with line endings of
lf
, which causes problems for Windows developers who haveautocrlf
enabled. (See https://prettier.io/docs/en/options#end-of-line)There needs to be a
.gitattributes
file with* text=auto eol=lf
to disable theautocrlf
.The text was updated successfully, but these errors were encountered: