black.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 23 Jul 2020 21:09:42 +0200
changeset 45233 ada51c1b6916
parent 44147 5e84a96d865b
permissions -rw-r--r--
commitctx: move copy meta config reading in a dedicated function The logic is non trivial, make it contained in a function is clearer. It also unlock easy re-use of that logic without having the pass the value around.

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