Skip to content

Files

Latest commit

 

History

History
26 lines (16 loc) · 488 Bytes

no-missing-end-of-source-newline.md

File metadata and controls

26 lines (16 loc) · 488 Bytes

Pattern: Missing end-of-source newline

Issue: -

Description

Disallow missing end-of-source newlines. Completely empty files are not considered violations.

Examples

The following patterns are considered violations:

a { color: pink; }

The following patterns are not considered violations:

a { color: pink; }
\n

Further Reading