From 8645f3672d142417e5b3c0351e3946b9c2d7ebb0 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 25 May 2026 18:11:40 -0500 Subject: [PATCH] [core] Enable additional zero-violation ruff lint families (#16645) --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index d16bf2b625..94cd6d21b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [