[core] Enable additional zero-violation ruff lint families (#16645)

This commit is contained in:
J. Nick Koston
2026-05-25 18:11:40 -05:00
committed by GitHub
parent a257edba62
commit 8645f3672d

View File

@@ -113,14 +113,22 @@ exclude = ['generated']
select = [
"E", # pycodestyle
"F", # pyflakes/autoflake
"FA", # flake8-future-annotations
"FLY", # flynt: convert string formatting to f-strings
"FURB", # refurb
"I", # isort
"ICN", # flake8-import-conventions
"LOG", # flake8-logging
"NPY", # numpy-specific rules
"PERF", # performance
"PL", # pylint
"Q", # flake8-quotes
"SIM", # flake8-simplify
"RET", # flake8-ret
"T10", # flake8-debugger
"UP", # pyupgrade
"W", # pycodestyle warnings
"YTT", # flake8-2020
]
ignore = [