ER-001 Imports should be ordered according to the configuartion parameters and further for each parameter, imports should be arrange alphabetically

Severity3
Enabledyes
Waivable
Configuration
Import Order:
    java
    javax
    org
    com
RationaleAlphabetically ordered imports improve code readability.
Violation
import x.y.Z;
import a.b.C;
Fix
import a.b.C;
import x.y.Z;
ResourcesCommon sense :-)


Hammurapi 3 Copyright © 2004 Hammurapi Group. All Rights Reserved.