D-Scanner
D-Scanner copied to clipboard
sorted checker should account for groups of imports
import b;
import a; // there is a clear separation using an empty line between these two imports
or a more extreme example:
import b;
void foo()
{
}
/* thousands of lines of code here */
import a; // warning: not sorted alphabetically
void bar()
{
}