Skip to content

Commit

Permalink
Enable ruff's flake8-todos (TD) rules (#3723)
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman authored Dec 26, 2024
1 parent 16919ad commit c44b5a5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ select = [
"SIM", # flake8-simplify
"T20", # flake8-print
"TC", # flake8-type-checking
"TD", # flake8-todos
"TID", # flake8-tidy-imports
"TRY", # tryceratops
"UP", # pyupgrade
Expand Down Expand Up @@ -147,6 +148,7 @@ ignore = [
"RET504", # Allow variable assignment and return immediately for readability
"S603", # Allow method calls that initiate a subprocess without a shell
"SIM117", # Allow nested `with` statements
"TD003", # Allow TODO comments without associated issue link
]
preview = true
explicit-preview-rules = true
Expand Down

0 comments on commit c44b5a5

Please sign in to comment.