taiyo-demo / pyproject.toml
yuki.tsutsumi
precommitにmypyを追加。makefileにコンテナに入るコマンドを追加。requirements.txtのバージョンを固定。blackの文字数幅を88文字にした。
6d3e7b4
raw
history blame
471 Bytes
[tool.black]
line-length = 88
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
)
'''
[tool.isort]
profile = "black"