You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Ivan Bessonov (Jira)" <ji...@apache.org> on 2021/08/11 09:39:00 UTC

[jira] [Assigned] (IGNITE-15286) Code style improvement.

     [ https://issues.apache.org/jira/browse/IGNITE-15286?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ivan Bessonov reassigned IGNITE-15286:
--------------------------------------

    Assignee: Ivan Bessonov

> Code style improvement.
> -----------------------
>
>                 Key: IGNITE-15286
>                 URL: https://issues.apache.org/jira/browse/IGNITE-15286
>             Project: Ignite
>          Issue Type: Improvement
>            Reporter: Andrey Mashenkov
>            Assignee: Ivan Bessonov
>            Priority: Major
>              Labels: ignite-3
>             Fix For: 3.0.0-alpha3
>
>
> We have a requirement to the imports order in our code-style guide,
> but checkstyle plugin has no rules configured.
> Let's turn on these checks with the code below..
> Also, let's add Idea codestyle config to the project as it is in Ignite 2.
> {code:java}
> <module name="AvoidStarImport"/>
> <module name="CustomImportOrder">
>     <property name="customImportOrderRules"
>               value="STANDARD_JAVA_PACKAGE###SPECIAL_IMPORTS###THIRD_PARTY_PACKAGE###STATIC"/>
>     <property name="standardPackageRegExp" value="^java\."/>
>     <property name="specialImportsRegExp" value="^javax\."/>
>     <property name="sortImportsInGroupAlphabetically" value="true"/>
>     <property name="separateLineBetweenGroups" value="false"/>
> </module>
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)