-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Awesome plugin! We have almost the same on in https://wemake-python-stylegui.de/en/latest/pages/usage/violations/consistency.html#wemake_python_styleguide.violations.consistency.WrongBracketPositionViolation
But, we also check calls. Like this one:
print(1,
2, 3,
4)
We force it to be the same as lists, tuples, etc:
print(1, 2, 3, 4)
print(
1, 2, 3, 4,
)
print(
1,
2,
3,
4,
)
Do you plan to implement this feature? In this case we will switch.
PeterJCLaw and nrlulz
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request