We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
[style] based_on_style=chromium split_before_named_assigns=False
When there are lists as arguments yapf seems to adopt a weird splitting:
def fooooooooooooo(aka=['aaaaaaaa', 'aaaaaaa', 'aaaa', 'aa', 'a'], types=['double', 'bool'], validator=some_looooooooooong_name): pass def fooooooooooooo(type01=aaaaaa, type02=['double'], type03=['double'], aka=['aaaaaaaa', 'aaaaaaa', 'aaaa', 'aa', 'a'], aaaaa=['double', 'bool'], validator=some_looooooooooong_name): pass
instead I would prefer:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When there are lists as arguments yapf seems to adopt a weird splitting:
instead I would prefer:
The text was updated successfully, but these errors were encountered: