Skip to content

Files

Latest commit

 

History

History
18 lines (11 loc) · 446 Bytes

MissingBlankLineAfterImports.md

File metadata and controls

18 lines (11 loc) · 446 Bytes

Pattern: Missing blank line after imports

Issue: -

Description

Makes sure there is a blank line after the imports of a source code file.

Example of violation:

import org.apache.commons.lang.StringUtils
class SomeClass { }                       // violation

Further Reading