mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
23 lines
361 B
TOML
23 lines
361 B
TOML
|
|
[tool.black]
|
||
|
|
line-length = 100
|
||
|
|
target-version = ['py37', 'py38']
|
||
|
|
exclude = '''
|
||
|
|
|
||
|
|
(
|
||
|
|
/(
|
||
|
|
\.eggs # exclude a few common directories in the
|
||
|
|
| \.git # root of the project
|
||
|
|
| \.hg
|
||
|
|
| \.mypy_cache
|
||
|
|
| \.tox
|
||
|
|
| \.venv
|
||
|
|
| _build
|
||
|
|
| buck-out
|
||
|
|
| build
|
||
|
|
| dist
|
||
|
|
)/
|
||
|
|
| migrations
|
||
|
|
|
||
|
|
)
|
||
|
|
'''
|