mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-29 02:36:10 +08:00
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.
24 lines
369 B
TOML
Vendored
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
|
|
)/
|
|
)
|
|
'''
|