seri::diary

日常

Poetryでprojectを作ったらとりあえず入れておくdev packages

いつも忘れるのでメモ

poetry add --group dev flake8 isort black flake8-bugbear flake8-docstrings mypy

setup.cfg はこんな感じに

[flake8]
max-line-length = 88
convention = google

[mypy]
ignore_missing_imports = true
show_error_codes = true

[isort]
include_trailing_comma = true
line_length = 88
multi_line_output = 3