Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ line-length = 120

[tool.ruff.format]
quote-style = "single"
# ruff format は Markdown 内の Python コードブロックも既定で整形対象にする。
# README の説明用コードまで書き換わって差分が膨らむので外す。
# ruff check のほうは Markdown を見ない("No Python files found" になる)ので、
# lint と format のスコープを揃える意味もある。
exclude = ["*.md"]

[tool.ruff.lint]
select = [
Expand Down
Loading