Ruff cover all logging issues

This commit is contained in:
Souyama 2026-01-08 00:30:46 +05:30
parent 72ef4a676b
commit b6bd41772a

View File

@ -21,6 +21,7 @@ lint.select = [
# The "F" series in Ruff stands for "Pyflakes" rules, which catch various Python syntax errors and undefined names.
# See all rules here: https://docs.astral.sh/ruff/rules/#pyflakes-f
"F",
"G" # logging rules
]
lint.ignore = ["E501", "E722", "E731", "E712", "E402", "E741"]