Skip to content

Support calls #9

@sobolevn

Description

@sobolevn

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions