You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Hongze Zhang (JIRA)" <ji...@apache.org> on 2019/04/29 17:15:09 UTC

[jira] [Closed] (CALCITE-487) Update checkstyle to 6.1.1

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

Hongze Zhang closed CALCITE-487.
--------------------------------

The issue was resolved but not closed in the given fix version. Closing now.

> Update checkstyle to 6.1.1
> --------------------------
>
>                 Key: CALCITE-487
>                 URL: https://issues.apache.org/jira/browse/CALCITE-487
>             Project: Calcite
>          Issue Type: Wish
>    Affects Versions: 1.0.0-incubating
>            Reporter: Vladimir Sitnikov
>            Assignee: Julian Hyde
>            Priority: Major
>             Fix For: 1.14.0
>
>
> Checkstyle 6.1.1 offers more consistent handling of indentations.
> I do not like that current checkstyle 5.7 tries to make arrays 2-indented, while IDEA makes them 4-aligned.
> I wish the style is as IDE-compatible as it could be (i.e. "reformat code" in IDE should result in checkstyle-acceptable code).
> The update is as "easy" as putting the following into pom.xml:
> {code:xml}
>         <plugin>
>           <groupId>org.apache.maven.plugins</groupId>
>           <artifactId>maven-checkstyle-plugin</artifactId>
>           <version>2.12.1</version>
>           <dependencies>
>             <dependency>
>               <groupId>com.puppycrawl.tools</groupId>
>               <artifactId>checkstyle</artifactId>
>               <version>6.1.1</version>
>             </dependency>
>           </dependencies>
>         </plugin>{code}
> Checkstyle 6.1.1 complains a lot on array initializers.
> I did not manage to get "non indented" names of methods like {{groupingKeyExtractor}} in 
> {code:java}
>   private static <K extends Comparable, V> Function1<Grouping<K, V>, K>
>   groupingKeyExtractor() { // IDEA adds no indentation here, however checkstyle wants "6" here
>     return new Function1<Grouping<K, V>, K>() {
>       public K apply(Grouping<K, V> a0) {
>         return a0.getKey();
>       }
>     };
>   }{code}
> With the following additions, the number of warnings is much less, however I wish the final style is IDE-compatible.
> {code:xml}
>     <module name="Indentation">
>       <property name="caseIndent" value="0"/>
>       <property name="basicOffset" value="2"/>
>       <property name="braceAdjustment" value="0"/>
>       <property name="arrayInitIndent" value="2"/> <-- added -->
>       <property name="throwsIndent" value="4"/> <-- added -->
>       <property name="lineWrappingIndentation" value="4"/> <-- added -->
>     </module>
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)