-
Notifications
You must be signed in to change notification settings - Fork 50
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
MBS-10881 update to gradle 7.2 #1167
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 |
---|---|---|
@@ -1,9 +1,13 @@ | ||
root = true | ||
|
||
# See conf/detekt.yml, values should be the same | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
indent_style = space | ||
insert_final_newline = true | ||
max_line_length = 120 | ||
max_line_length = 120 | ||
|
||
ij_kotlin_imports_layout = *, java.**, javax.**, kotlin.**, ^ |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -262,8 +262,9 @@ formatting: | |
active: false | ||
AnnotationSpacing: | ||
active: true | ||
# todo fix and enable | ||
ArgumentListWrapping: | ||
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. pinterest/ktlint#1196 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. That's why I didn't update the Detekt version here :) 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. We need to run ktlint separately i think |
||
active: true | ||
active: false | ||
# questionable rule; && and || goes to the end of line, instead of beginning a new line as we do right now | ||
ChainWrapping: | ||
active: false | ||
|
@@ -281,7 +282,7 @@ formatting: | |
insertFinalNewLine: false | ||
ImportOrdering: | ||
active: true | ||
layout: 'idea' | ||
layout: '*,java.**,javax.**,kotlin.**,^' | ||
# blocked by bugs: https://github.com/pinterest/ktlint/issues?q=is%3Aissue+is%3Aopen+Indentation | ||
Indentation: | ||
active: false | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-rc-3-all.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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.
Remove the
jetbrains-kotlin-html
repoThere 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.
done