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
We have seen in https://github.com/dotnet/vscode-csharp/blob/main/l10n/bundle.l10n.json, initially everything is end with crlf
But after adding a string and run @vscode/l10n-dev export
git would complain that the line ending is changed to lf
Is there any way to use 'crlf' as the line ending?
The text was updated successfully, but these errors were encountered:
it turns out there isn't a way to say "I want the lines to end in CRLF" within JSON.stringify... so the only solution is to do something prettty hacky by post processing. We run the risk of turning actual expected usages of LF's into CLRF's which does concern me.
Hi Tyler,
We run all the localization work in the pipeline so every time the bot performed localization, someone in our team would see this issue. So I start the issue to ask if there is any existing solution for this.
It's not a big problem if it is not configurable now. Thanks for your quick response.
Hi,
We have seen in https://github.com/dotnet/vscode-csharp/blob/main/l10n/bundle.l10n.json, initially everything is end with
crlf
But after adding a string and run @vscode/l10n-dev export
git would complain that the line ending is changed to
lf
Is there any way to use 'crlf' as the line ending?
The text was updated successfully, but these errors were encountered: