Skip to content

Files

Latest commit

 

History

History
33 lines (22 loc) · 462 Bytes

no-empty-first-line.md

File metadata and controls

33 lines (22 loc) · 462 Bytes

Pattern: First line is empty

Issue: -

Description

Disallow empty first lines.

Examples

The following patterns are considered violations:

    \n
    /** ↑
     * This newline */
    a { color: pink; }
\n
a { color: pink; }

The following patterns are not considered violations:

a { color: pink; }

Further Reading