Pattern: Missing blank line after package
Issue: -
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() { /* ... */ }
}