From d108cd6b0394b2823f39bab796ee004182b1a704 Mon Sep 17 00:00:00 2001 From: Matthew Lonis Date: Wed, 1 Apr 2026 21:33:24 -0400 Subject: [PATCH] Update pylint config --- .pylintrc | 4 ---- test.sh | 2 ++ 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.pylintrc b/.pylintrc index 672a5d5..e2a2232 100644 --- a/.pylintrc +++ b/.pylintrc @@ -42,10 +42,6 @@ limit-inference-results=100 # Pickle collected data for later comparisons. persistent=yes -# When enabled, pylint would attempt to guess common misconfiguration and emit -# user-friendly hints instead of false-positive error messages. -suggestion-mode=yes - # Allow loading of arbitrary C extensions. Extensions are imported into the # active Python interpreter and may run arbitrary code. unsafe-load-any-extension=no diff --git a/test.sh b/test.sh index d3d46ba..ffe9646 100755 --- a/test.sh +++ b/test.sh @@ -1,4 +1,6 @@ #!/bin/bash +poetry run flake8 api project manage.py +poetry run pylint api project manage.py docker compose up --build --pull always --remove-orphans -V --wait poetry run python manage.py migrate poetry run python manage.py test