Skip to content

Commit e17d184

Browse files
committed
Update CHANGELOG.md
1 parent 224b7fc commit e17d184

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,17 @@
3131
* Add new `unneeded_escaping` rule that detects closure parameters marked with
3232
`@escaping` that are never stored or captured escapingly.
3333
[SimplyDanny](https://github.com/SimplyDanny)
34+
35+
* Add `multiline_parameters_on_call` opt-in rule to enforce consistent multiline
36+
formatting for function and method call arguments.
37+
[GandaLF2006](https://github.com/GandaLF2006)
38+
39+
* `multiline_parameters`: add optional checks for **function call arguments**.
40+
When `check_calls` is enabled, the rule enforces that call arguments are either
41+
all on one line (subject to `max_number_of_single_line_parameters`) or
42+
one per line, mirroring the behavior for function/initializer declarations.
43+
Trailing closures are ignored by default.
44+
[GandaLF2006](https://github.com/GandaLF2006)
3445

3546
### Bug Fixes
3647

@@ -278,13 +289,6 @@
278289
* Rewrite `quick_discouraged_call` rule with SwiftSyntax.
279290
[SimplyDanny](https://github.com/SimplyDanny)
280291

281-
* `multiline_parameters`: add optional checks for **function call arguments**.
282-
When `check_calls` is enabled, the rule enforces that call arguments are either
283-
all on one line (subject to `max_number_of_single_line_parameters`) or
284-
one per line, mirroring the behavior for function/initializer declarations.
285-
Trailing closures are ignored by default.
286-
[GandaLF2006](https://github.com/GandaLF2006)
287-
288292
### Bug Fixes
289293

290294
* Ensure that header matched against always end in a newline in `file_header` rule.

0 commit comments

Comments
 (0)