From e6f78ea52058da9e804e9dd92ca8fce64dd5f4e4 Mon Sep 17 00:00:00 2001
From: Andreas Tolfsen <andretol@usit.uio.no>
Date: Thu, 15 Jul 2021 17:26:59 +0200
Subject: [PATCH] build: disable a few pylint checks

Some of the lint checks disabled in this patch should possibly be
re-enabled, but this is what is necessary to get the lints passing
on the current state of the source code without too much trouble.

Fixes: GREG-16
---
 .pylintrc | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/.pylintrc b/.pylintrc
index 5e0c5450..b2a6c571 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -1,2 +1,17 @@
 [MASTER]
 load-plugins=pylint_django
+ignore=gregsite/settings
+django-settings-module=gregsite.settings
+
+[MESSAGES CONTROL]
+disable=
+    fixme,
+    import-outside-toplevel,
+    invalid-name,
+    line-too-long,
+    missing-class-docstring,
+    missing-function-docstring,
+    missing-module-docstring,
+    no-self-use,
+    too-few-public-methods,
+    too-many-ancestors,
-- 
GitLab