I'm getting a warning of "No newline at end of file" on GitHub.
If my file has a CRLF at end of file, does that count as newline? Also how do I add a newline at end of an XML file?
I'm getting a warning of "No newline at end of file" on GitHub.
If my file has a CRLF at end of file, does that count as newline? Also how do I add a newline at end of an XML file?
"No new line at end of file" indicates that you do not have a newline (usually '\n', aka CR or CRLF) at the end of file.
You refer to this answer for adding a newline at the end of the XML file.