Skip to content

Files

Latest commit

 

History

History
37 lines (23 loc) · 433 Bytes

no-empty-source.md

File metadata and controls

37 lines (23 loc) · 433 Bytes

Pattern: Empty source file

Issue: -

Description

A source containing only whitespace is considered empty.

Examples

The following patterns are considered violations:

\t\t
\n

The following patterns are not considered violations:

a {}
/* Only comments */

Further Reading