-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-29470][BUILD] Update plugins to latest versions #26117
New issue
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -64,6 +64,11 @@ | |
| <property name="message" value="No trailing whitespace allowed."/> | ||
| </module> | ||
|
|
||
| <module name="LineLength"> | ||
| <property name="max" value="100"/> | ||
| <property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://"/> | ||
| </module> | ||
|
|
||
| <module name="NewlineAtEndOfFile"/> | ||
|
|
||
| <module name="TreeWalker"> | ||
|
|
@@ -91,10 +96,6 @@ | |
| <property name="allowByTailComment" value="true"/> | ||
| <property name="allowNonPrintableEscapes" value="true"/> | ||
| </module> | ||
| <module name="LineLength"> | ||
| <property name="max" value="100"/> | ||
| <property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://"/> | ||
| </module> | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is banned at |
||
| <module name="NoLineWrap"/> | ||
| <module name="EmptyBlock"> | ||
| <property name="option" value="TEXT"/> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,7 +18,7 @@ | |
| addSbtPlugin("com.etsy" % "sbt-checkstyle-plugin" % "3.1.1") | ||
|
|
||
| // sbt-checkstyle-plugin uses an old version of checkstyle. Match it to Maven's. | ||
| libraryDependencies += "com.puppycrawl.tools" % "checkstyle" % "8.23" | ||
| libraryDependencies += "com.puppycrawl.tools" % "checkstyle" % "8.25" | ||
|
Comment on lines
20
to
+21
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why it is an old version? Looks like it is very new version? https://mvnrepository.com/artifact/com.puppycrawl.tools/checkstyle
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The description
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see. Thanks for clarifying. |
||
|
|
||
| // checkstyle uses guava 23.0. | ||
| libraryDependencies += "com.google.guava" % "guava" % "23.0" | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.