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
Atom Editor now has line ending selector for selecting ending format of file.
But on Windows environment even I try to select LF format for tsconfig.json which always be saved to CRLF format.
Does it have limitation to solve the issue? Thanks a lot!
The text was updated successfully, but these errors were encountered:
Looks like it's currently done intentionally and can't be changed (https://github.com/TypeStrong/atom-typescript/blob/master/dist/main/tsconfig/tsconfig.js#L422). The fix here would be to detect the current line endings, like we do with indent, and stringify it back the same.
Sorry, something went wrong.
Also the setting needs to be sent from the front end process to the backend process (which is the main reason it hasn't been done yet)
The fix here would be to detect the current line endings, like we do with indent, and stringify it back the same.
Using a separate file instead of tsconfig.json would be even better, especially since TS now supports comments in tsconfig.json.
tsconfig.json
files
Successfully merging a pull request may close this issue.
Atom Editor now has line ending selector for selecting ending format of file.
But on Windows environment even I try to select LF format for tsconfig.json which always be saved to CRLF format.
Does it have limitation to solve the issue? Thanks a lot!
The text was updated successfully, but these errors were encountered: