diff options
| author | alex <alex@pdp7.net> | 2025-03-16 14:00:32 +0100 |
|---|---|---|
| committer | alexpdp7 <alex@corcoles.net> | 2025-03-16 14:01:27 +0100 |
| commit | a3e56ad801343697cdc2dda139193f240497973e (patch) | |
| tree | 112231a0d444d106b4bebfecbf4ec722694917a6 /blog/pyproject.toml | |
| parent | f6be97c47a9099afc7048db90dd03a2db36306ce (diff) | |
Finish ruff cleanup
Related to #376
Diffstat (limited to 'blog/pyproject.toml')
| -rw-r--r-- | blog/pyproject.toml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/blog/pyproject.toml b/blog/pyproject.toml index b1f9c314..6f4e9a35 100644 --- a/blog/pyproject.toml +++ b/blog/pyproject.toml @@ -36,10 +36,10 @@ build-backend = "hatchling.build" [tool.ruff.lint] select = ["ALL"] ignore = [ - "E741", # Ambiguous variable name (single letter variable) - "ANN", # Missing type annotations - "D1", # Missing docstrings - "B011", "PT015", "S101", # I am wrong in liking asserts, but I do - "COM812", # Trailing comma missing, incompatible with ruff format - "D400", "D415", "D212", "D205" # I like doctests without docstrings + "E741", # Ambiguous variable name (single letter variable) + "ANN", # Missing type annotations + "D1", # Missing docstrings + "B011", "PT015", "S101", # I am wrong in liking asserts, but I do + "COM812", # Trailing comma missing, incompatible with ruff format + "D400", "D415", "D212", "D205", "D402", # I like doctests without docstrings ] |
