weblate/pyproject.toml
Michal Čihař d6a176caa3 Misc: Black coding style
Remove remaining exceptions to the coding style in quotes. It is better
to do all the changes now than trying to address this slowly as that
just increases differences.
2020-03-09 13:08:38 +01:00

24 lines
369 B
TOML
Vendored

[tool.black]
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv.*
| _build
| buck-out
| build
| dist
| data
| data-test
| node_modules
| settings\.py
| scripts/iso-codes
)/
)
'''