Skip to content

Files

Latest commit

 

History

History
26 lines (15 loc) · 332 Bytes

trailing_newline.md

File metadata and controls

26 lines (15 loc) · 332 Bytes

Pattern: Trailing newline

Issue: -

Description

Files should have a single trailing newline.

Examples of correct code:

let a = 0

Examples of incorrect code:

let a = 0


let a = 0

Further Reading