Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 493 Bytes

MissingBlankLineAfterPackage.md

File metadata and controls

22 lines (14 loc) · 493 Bytes

Pattern: Missing blank line after package

Issue: -

Description

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

Example of violation:

  package org.codenarc
  import java.util.Date                     // violation

  class SomeClass {
  void go() { /* ... */ }
  }

Further Reading