Update `PL` code ignores in Ruff

This commit is contained in:
Adam Turner 2023-01-23 08:03:12 +00:00
parent ddf4daf2c6
commit a6b34dd13d

View File

@ -160,6 +160,8 @@ ignore = [
'B905',
# pygrep-hooks
"PGH003",
# pylint
"PLR2004", # avoid magic values
# flake8-bandit
"S101", # assert used
"S105", # possible hardcoded password
@ -189,10 +191,7 @@ select = [
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"PGH", # pygrep-hooks
"PLC", # pylint
"PLE", # pylint
"PLR", # pylint
"PLW", # pylint
"PL", # pylint
"S", # flake8-bandit
"SIM", # flake8-simplify
"T10", # flake8-debugger