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
How would I change yapf config to remove the blank line between docstring and function head? My yapf config
[tool.yapf] based_on_style = "pep8" column_limit = 120 split_before_named_assigns = false blank_line_before_nested_class_or_def = false
Expect
""" some comments @param xxx @return xxx """ >>>> remove this blank line def func(xxx): xxxx
After pre-commit checking, it always keeps the blank line.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
How would I change yapf config to remove the blank line between docstring and function head?
My yapf config
Expect
After pre-commit checking, it always keeps the blank line.
The text was updated successfully, but these errors were encountered: