Skip to content

Files

Latest commit

 

History

History
26 lines (17 loc) · 358 Bytes

eol_at_end_of_file.md

File metadata and controls

26 lines (17 loc) · 358 Bytes

Pattern: Missing newline for end of file

Issue: -

Description

DO put a single newline at the end of non-empty files.

Example of incorrect code:

a {
}

Example of correct code:

b {
}
  <-- newline

Further Reading