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 auto-fixing, we use the \n character as a line-ending, but on Windows, the line-ending is more likely to be \r\n. We could use os.EOL but this may not match the file that we are fixing, so we should probably detect the line ending during parsing and then use that.
The text was updated successfully, but these errors were encountered:
When auto-fixing, we use the
\n
character as a line-ending, but on Windows, the line-ending is more likely to be\r\n
. We could useos.EOL
but this may not match the file that we are fixing, so we should probably detect the line ending during parsing and then use that.The text was updated successfully, but these errors were encountered: