Refactor: introducing Ruff

This commit is contained in:
tsukumi
2024-03-07 19:52:34 +00:00
parent 3f07c256e3
commit 4d5c537f95
8 changed files with 26 additions and 21 deletions

9
pyproject.toml Normal file
View File

@@ -0,0 +1,9 @@
[tool.ruff]
# インデント幅を 4 に設定
indent-width = 4
# 行の長さを 100 文字に設定
line-length = 100
# Python 3.10 向けにフォーマット
target-version = "py310"