🔧 Add T201 rule to ruff linting configuration to disallow print statements (#1865)

This commit is contained in:
Alejandra
2025-09-09 14:01:31 +02:00
committed by GitHub
parent 0d1da3e09d
commit 6e0881d284

View File

@@ -55,6 +55,7 @@ select = [
"C4", # flake8-comprehensions "C4", # flake8-comprehensions
"UP", # pyupgrade "UP", # pyupgrade
"ARG001", # unused arguments in functions "ARG001", # unused arguments in functions
"T201", # print statements are not allowed
] ]
ignore = [ ignore = [
"E501", # line too long, handled by black "E501", # line too long, handled by black