black.toml
author Martin von Zweigbergk <martinvonz@google.com>
Tue, 04 Aug 2020 13:22:00 -0700
changeset 45331 f3481e4fcc3a
parent 44232 5e84a96d865b
permissions -rw-r--r--
templater: pass opened file-like object to templatespec I think I said earlier that I planned to create a special templatespec variant for built-in templates. That was true (I planned that), but I ended up (in this patch) just adding a file-like object to the `mapfile_templatespec()` variant instead. Differential Revision: https://phab.mercurial-scm.org/D8893

[tool.black]
line-length = 80
exclude = '''
build/
| wheelhouse/
| dist/
| packages/
| \.hg/
| \.mypy_cache/
| \.venv/
| mercurial/thirdparty/
'''
skip-string-normalization = true
quiet = true