Enable logging related ruff checks

... to extend the enforced format rules related to logging (like
delayed string interpolation in log messages).

Change-Id: I9a34ad9f9fb4246295727fed6cc3534a06f4ac85
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
This commit is contained in:
Takashi Kajinami
2026-01-24 00:09:46 +09:00
parent cbfabae7d2
commit 750987376e
+1 -1
View File
@@ -56,7 +56,7 @@ quote-style = "preserve"
docstring-code-format = true
[tool.ruff.lint]
select = ["E4", "E5", "E7", "E9", "F", "S", "UP"]
select = ["E4", "E5", "E7", "E9", "F", "LOG", "S", "UP"]
ignore = [
# we only use asserts for type narrowing
"S101",