Commit ef7bebc
committed
Use "indented" style for MultilineMethodCallIndentation
The current (default) value for this check wants chained assignments to
look like:
```
foo =
Foo.
bar.
baz
```
That is not a style I think anybody on our team habitually writes. What
I think we tend to do (and which matches the `indented` style) is:
```
foo = Foo.
bar.
baz
```
Since AFAIK this is already the most common de-facto style we use, we
should probably set that in the styleguide.1 parent 42b2d62 commit ef7bebc
1 file changed
+3
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
142 | 142 | | |
143 | 143 | | |
144 | 144 | | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
145 | 148 | | |
146 | 149 | | |
147 | 150 | | |
| |||
0 commit comments