Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spaces in function arguments #5224

Open
sedenkovvlad opened this issue Sep 15, 2023 · 1 comment · May be fixed by #5337
Open

Spaces in function arguments #5224

sedenkovvlad opened this issue Sep 15, 2023 · 1 comment · May be fixed by #5337

Comments

@sedenkovvlad
Copy link

sedenkovvlad commented Sep 15, 2023

I would like to remove spaces before the first function argument and after the last function argument. The rule must be opt-in. Need good style code

Bad

makeGenerator(❗️ style ❗️)
makeGenerator(❗️ style)
makeGenerator(style ❗️)
makeGenerator(❗️ offset: 0, limit: 0)
makeGenerator(offset: 0, limit: 0 ❗️)

Good

makeGenerator(style)
makeGenerator(style)
makeGenerator(style)
makeGenerator(offset: 0, limit: 0)
makeGenerator(offset: 0, limit: 0)
@u-abyss
Copy link
Contributor

u-abyss commented Nov 4, 2023

I'll work on it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants