disables max line length and parameter list wrapping ktlint rules
This commit is contained in:
parent
ff6f03b0d4
commit
0e4762e3de
|
@ -105,8 +105,12 @@ allprojects {
|
||||||
// display the corresponding rule
|
// display the corresponding rule
|
||||||
verbose = true
|
verbose = true
|
||||||
disabledRules = [
|
disabledRules = [
|
||||||
|
// TODO: Re-enable these 4 rules after reformatting project
|
||||||
"indent",
|
"indent",
|
||||||
"experimental:argument-list-wrapping",
|
"experimental:argument-list-wrapping",
|
||||||
|
"max-line-length",
|
||||||
|
"parameter-list-wrapping",
|
||||||
|
|
||||||
"spacing-between-declarations-with-comments",
|
"spacing-between-declarations-with-comments",
|
||||||
"no-multi-spaces",
|
"no-multi-spaces",
|
||||||
"experimental:spacing-between-declarations-with-annotations",
|
"experimental:spacing-between-declarations-with-annotations",
|
||||||
|
|
Loading…
Reference in New Issue