0

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?

RandomyzeEverything
  • 764
  • 3
  • 7
  • 21

1 Answers1

0

"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.

Brijesh Shah
  • 172
  • 8