You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I checkout the code on a Windows 7 machine, it automatically transforms every line ending from LF to CRLF and this makes the tests explode.
I can edit my git configuration to not turn line endings automatically to windows style by calling git config --global core.autocrlf true, but it seems like an unnecessary extra round for windows users to do, since git will change the line endings back to LF when I commit. (By the way, these are the default settings for git on windows)
I would be happier, if that option would be removed from the tests.
The text was updated successfully, but these errors were encountered:
There is also some inconsistency between the local prettier/prettier module, which I just installed and on the CI tool when it comes to template strings:
When I checkout the code on a Windows 7 machine, it automatically transforms every line ending from LF to CRLF and this makes the tests explode.
I can edit my git configuration to not turn line endings automatically to windows style by calling
git config --global core.autocrlf true
, but it seems like an unnecessary extra round for windows users to do, since git will change the line endings back to LF when I commit. (By the way, these are the default settings for git on windows)I would be happier, if that option would be removed from the tests.
The text was updated successfully, but these errors were encountered: