Skip to content

Commit

Permalink
Check for print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Apr 29, 2023
1 parent 13fffe3 commit 4d77b8d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ select = [
"S", # flake8-bandit
"SIM", # flake8-simplify
"T10", # flake8-debugger
"T20", # flake8-print
"TCH", # flake8-type-checking
"TID", # flake8-tidy-imports
"UP", # pyupgrade
Expand All @@ -101,7 +102,6 @@ select = [
# "FBT", # flake8-boolean-trap
# "Q", # flake8-quotes
# "SLF", # flake8-self
# "T20", # flake8-print
# "TRY", # tryceratops
]
# Note: use `ruff rule ...` to see explanations of rules
Expand All @@ -123,6 +123,7 @@ max-statements = 95
[tool.ruff.per-file-ignores]
"docs/*" = [
"INP001", # allow stand-alone scripts
"T201", # allow print statements
]
"tests/*" = [
"D", # no docstrings necessary here
Expand Down

0 comments on commit 4d77b8d

Please sign in to comment.