From 7478e402945f4f14f8f8abb44d7872262b62466f Mon Sep 17 00:00:00 2001 From: Hongbo Miao <3375461+hongbo-miao@users.noreply.github.com> Date: Sat, 11 Jan 2025 22:17:25 -0800 Subject: [PATCH] feat(ruff): enable flake8-fixme, pandas-vet --- .ruff.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.ruff.toml b/.ruff.toml index 49f4b1e63c..b9e82db8ee 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -191,6 +191,7 @@ select = [ "F", # Pyflakes "FAST", # FastAPI "FBT", # flake8-boolean-trap + "FIX", # flake8-fixme "FLY", # flynt "FURB", # Refurb "G", # flake8-logging-format @@ -201,6 +202,7 @@ select = [ "LOG", # flake8-logging "N", # pep8-naming "NPY", # NumPy + "PD", # pandas-vet "PERF", # Perflint "PGH", # pygrep-hooks "PIE", # flake8-pie @@ -227,6 +229,8 @@ select = [ "YTT", # flake8-2020 # "CPY", # flake8-copyright # "DJ", # flake8-django + # "DOC", # pydoclint + # "ERA", # eradicate # "FA", # flake8-future-annotations # "INP", # flake8-no-pep420 ] @@ -245,6 +249,7 @@ ignore = [ "FBT002", "G004", "ISC001", + "PD901", "PLR0913", "PLR0915", "PLR2004",