From 49425f421e6d97d33b03928f0923f1fa28f59adc Mon Sep 17 00:00:00 2001 From: slush Date: Thu, 21 Nov 2024 10:53:11 -0600 Subject: [PATCH] feat: adds flake8 plugins --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 5ab6c81..b4e8e5f 100644 --- a/setup.py +++ b/setup.py @@ -16,6 +16,8 @@ "flake8>=7.1.1,<8", # Style linter "flake8-breakpoint>=1.1.0,<2", # Detect breakpoints left in code "flake8-print>=5.0.0,<6", # Detect print statements left in code + "flake8-pydantic", # For detecting issues with Pydantic models + "flake8-type-checking", # Detect imports to move in/out of type-checking blocks "isort>=5.13.2,<6", # Import sorting linter "mdformat>=0.7.19", # Auto-formatter for markdown "mdformat-gfm>=0.3.5", # Needed for formatting GitHub-flavored markdown