We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is my configuration
<check level="error" class="org.scalastyle.scalariform.ImportOrderChecker" enabled="true"> <parameters> <parameter name="groups">java,scala,others,mycompany</parameter> <parameter name="group.java">javax?\..+</parameter> <parameter name="group.scala">scala\..+</parameter> <parameter name="group.mycompany">com.mycompany\..+</parameter> <parameter name="group.others">.+</parameter> </parameters> </check>
and the following import is being flagged as invalid by scalastyle, reporting There should be no empty line separating imports in the same group.
There should be no empty line separating imports in the same group.
com.rabbitmq.this com.mycompany.that
However if I change the order to java,scala,mycompany,others then there is no error reported.
java,scala,mycompany,others
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is my configuration
and the following import is being flagged as invalid by scalastyle, reporting
There should be no empty line separating imports in the same group.
However if I change the order to
java,scala,mycompany,others
then there is no error reported.The text was updated successfully, but these errors were encountered: