File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change 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
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.
You can’t perform that action at this time.
0 commit comments