-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Description
A while ago, we added opinionated autoformatting to our frontend code
with Prettier (see #2466). We’re happy with the results! But, much to my
and @davidsoergel’s chagrin, we still don’t have any autoformatting for
the backend.
The standard Python formatter is Black. It’s maintained by
the Python Software Foundation. It’s used by other Google projects, too,
like the Google Cloud SDK.
Black and Prettier have similar philosophies, and also have similar
style verdicts. As with any autoformatter, the style itself isn’t that
important, but the consistency is a nice bonus.
Here is an online playground for Black: https://black.now.sh/
Why?
(Same as at #2466.) Most importantly, you don’t have to think about
formatting while writing, reviewing, or reading code.
Consistent style also makes diffs smaller, and improves greppability
(e.g., you don’t have to account for two quote forms).
Considerations
Style
The diff is not that large—much smaller than the Prettier diff both in
number of changed lines and total delta in number of lines:
$ git ls-files -z '*.py' | xargs -0 wc -l | tail -n 1
69088 total
$ black . >/dev/null 2>/dev/null
$ git ls-files -z '*.py' | xargs -0 wc -l | tail -n 1
70718 total
$ git diff --shortstat
283 files changed, 18766 insertions(+), 17136 deletions(-)
(Note: The above is running black-2spaces with an 80-character
line limit.)
We can chunk this by package, as with the Prettier change.
Performance
Running Black on our entire codebase takes 2.5 seconds on my machine.
Alternatives considered
The other formatter that we could use is YAPF, which is code
that happens to be owned by Google. Unfortunately, YAPF does not appear
to have any configuration option to avoid column alignment without using
literal tab characters (which we presumably want to avoid). IMHO, this
is such a serious failure that it knocks YAPF out of consideration.
What is column alignment and why is it bad?
Consider three renderings of the same code:
# Black style
response = requests.post(
endpoint,
data=post_body,
timeout=_REQUEST_TIMEOUT_SECONDS,
headers={"User-Agent": "tensorboard/%s" % version.VERSION},
)# Hanging indent
response = requests.post(
endpoint,
data=post_body,
timeout=_REQUEST_TIMEOUT_SECONDS,
headers={"User-Agent": "tensorboard/%s" % version.VERSION})# Columnar alignment (never do this)
response = requests.post(endpoint,
data=post_body,
timeout=_REQUEST_TIMEOUT_SECONDS,
headers={"User-Agent": "tensorboard/%s" % version.VERSION})As with Prettier, Black’s continuation style is nicer on the blame for
the same reason that trailing commas are. It’s also consistent with the
formatting for multi-line lists and dicts. The second style, using
hanging indents, is also okay, though you have the “no trailing comma”
blame pollution problem.
But columnar alignment is the worst of all worlds. It forces code far
to the right, decreasing effective line length. It is brittle with
respect to changes on the left: imagine changing requests.post to
request.get, which is one character shorter. You’d have to either
totally break alignment of the following lines or pollute an
unbounded segment of blame by fixing all of their indentations. Columnar
alignment also creates lines starting at arbitrary columns rather than
nice tab-stop boundaries.
Needless to say, Black never employs this style.
There is also intrinsic merit in selecting the style that is officially
blessed by the PSF, and toward which the ecosystem seems to be moving.
Steps
Here’s what we need to do to make this happen.
- Decide on a config/fork. (Probably
line-length = 80with
standard 4-space indentation and continuations: i.e., no fork.) - Add
black --check .to our CI, and reformat all code. - Update
CONTRIBUTING.mdto show how to configure format-on-save.