add rule for logging check (#24553)

This commit is contained in:
Asuka Minato 2025-08-27 11:25:06 +09:00 committed by GitHub
parent 244ed5e5e3
commit 5df3a4eb98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ select = [
"S302", # suspicious-marshal-usage, disallow use of `marshal` module
"S311", # suspicious-non-cryptographic-random-usage
"G001", # don't use str format to logging messages
"G003", # don't use + in logging messages
"G004", # don't use f-strings to format logging messages
]