From 1b858a2b7af28b792513f16360793eb1064a8590 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20H=C3=A4ttasch?= <benjamin.haettasch@fachschaft.informatik.tu-darmstadt.de> Date: Sat, 10 Jun 2023 11:53:05 +0200 Subject: [PATCH] Ignore missing module docstrings in linting Since django projects follow a strict structure, enforcing these docstrings will mostly result in boilerplate comments without semantic value. --- pylintrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pylintrc b/pylintrc index 04f3b525..c16faf4c 100644 --- a/pylintrc +++ b/pylintrc @@ -7,6 +7,9 @@ load-plugins= django-settings-module=AKPlanning.settings +disable= + C0114, # missing-module-docstring + [FORMAT] -- GitLab