taiyo-demo / pyproject.toml
yuki.tsutsumi
blackの設定ファイルを導入し、flake8の指摘をできるだけ対応した。
9043269
raw
history blame
439 Bytes
[tool.black]
line-length = 79
target-version = ['py311']
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
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''