Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 367 Bytes

File metadata and controls

35 lines (24 loc) · 367 Bytes

no-empty-source

Disallow empty sources.

  ···\n\t
/**     ↑
 *  This empty source */

A source containing only whitespace is considered empty.

The following patterns are considered warnings:

\t\t
\n

The following patterns are not considered warnings:

.class { }
/* Only comments */