diff --git a/post/clang_tidy_review/pyproject.toml b/post/clang_tidy_review/pyproject.toml
index 34cf300..2d73b4e 100644
--- a/post/clang_tidy_review/pyproject.toml
+++ b/post/clang_tidy_review/pyproject.toml
@@ -52,13 +52,8 @@ extend_exclude = "_version.py"
 extend-select = [
   "B",           # flake8-bugbear
   "I",           # isort
-  "ARG",         # flake8-unused-arguments
   "C4",          # flake8-comprehensions
   "ICN",         # flake8-import-conventions
-  "G",           # flake8-logging-format
-  "PGH",         # pygrep-hooks
-  "PIE",         # flake8-pie
-  "PL",          # pylint
   "PT",          # flake8-pytest-style
   "PTH",         # flake8-use-pathlib
   "RET",         # flake8-return
@@ -67,18 +62,5 @@ extend-select = [
   "UP",          # pyupgrade
   "YTT",         # flake8-2020
   "EXE",         # flake8-executable
-  "NPY",         # NumPy specific rules
-  "PD",          # pandas-vet
   "FURB",        # refurb
 ]
-ignore = [
-  "PLR2004",     # magic-comparison
-  "B9",          # flake8-bugbear opinionated warnings
-  "PLC0414",     # useless-import-alias
-  "PLR0913",     # too-many-arguments
-  "PLR0917",     # too-many-positional
-  "PLR0914",     # too-many-locals
-  "PLR0915",     # too-many-statements
-  "PLR0912",     # too-many-branches
-  "PTH123",      # builtin-open
-]