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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Trying to track down some failing tests on Windows in the analysis server, and it seems to be caused by this:
https://github.com/dart-lang/yaml_edit/blob/2a9a11bee120d507d61d501c34585440be8c12b6/lib/src/strings.dart#L277
It's using \n but never gets rewritten to lineEnding, so the resulting YAML has a mix of \n and \r\n on Windows.
\n
lineEnding
\r\n
The text was updated successfully, but these errors were encountered:
Fix line endings for inserted maps on Windows
7ed8618
Fixes https://github.com/dart-lang/yaml_edit/issues/65
ff93da8
Fix line endings for inserted maps on Windows (#66)
82ab64d
Fix line endings for inserted maps on Windows (dart-lang/yaml_edit#66)
5e7e143
Successfully merging a pull request may close this issue.
Trying to track down some failing tests on Windows in the analysis server, and it seems to be caused by this:
https://github.com/dart-lang/yaml_edit/blob/2a9a11bee120d507d61d501c34585440be8c12b6/lib/src/strings.dart#L277
It's using
\n
but never gets rewritten tolineEnding
, so the resulting YAML has a mix of\n
and\r\n
on Windows.The text was updated successfully, but these errors were encountered: