-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
questionAsking for support or clarificationAsking for support or clarification
Description
Say I have a function like f(a, b, c, d, e, f) (with longer var names) that gets split into
f(
a,
b,
c,
d,
e,
f,
)
I'd prefer to have
f(
a, b, c,
d, e, f,
)
so I would like ruff formatter to ignore it.
I know there are noqa comments that work for the linter, but I can't make them work for the formatter as well. Is it possible to do something like that?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
questionAsking for support or clarificationAsking for support or clarification