blob: c08c169f6f027ba8e037fa0198f4c70586b19be1 [file] [log] [blame]
[tool.black]
line-length = 80
skip_string_normalization = true
target-version = ['py27']
include = '\.pyi?$'
exclude = '''
# Start regex with a forward slash so that black will only ignore these files
# if they're in the root of the repo.
^/(
(
(
\.eggs
| \.git
| \.mypy_cache
| \.venv
| \.recipe_deps
)/
# recipes.py is vendored from upstream recipe engine, so we want to keep it
# identical to upstream.
| recipes.py
)
)
'''