From 7b38a2dec6e315bfcd124ac22af1886b7d3a34f3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Benjamin=20H=C3=A4ttasch?=
 <benjamin.haettasch@fachschaft.informatik.tu-darmstadt.de>
Date: Fri, 4 Aug 2023 13:27:04 +0200
Subject: [PATCH] Make small improvements to pylint configuration

---
 pylintrc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pylintrc b/pylintrc
index 3c0776b4..f2c5ddad 100644
--- a/pylintrc
+++ b/pylintrc
@@ -1,6 +1,6 @@
 [MAIN]
 
-ignore=tests.py, urls.py, migrations
+ignore=urls.py, migrations
 
 load-plugins=
     pylint_django,
@@ -45,7 +45,7 @@ ignore-signatures=yes
 module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+)|((tags_)*AK[A-Z][a-z0-9_]+))$
 
 # Good variable names which should always be accepted, separated by a comma
-good-names=i,j,k,a,e,ak,tz,_
+good-names=i,j,k,a,e,ak,tz,_,pk
 
 # Allow single-letter variables and enforce lowercase variables with underscores otherwise
 variable-rgx=[a-z_][a-z0-9_]{0,30}$
-- 
GitLab