commit 21e96cb6c4b678bff9d8345220bfe19054395c73
parent 173cc8eb16ac1b3c075aa881813bf8a068467c76
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date: Sun, 11 Apr 2021 18:40:39 +0200
Disable some warnings from Python linters
Diffstat:
2 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/.config/flake8 b/.config/flake8
@@ -0,0 +1,6 @@
+[flake8]
+ignore =
+ # I hate long lines as much as the next person, but sometimes they happen.
+ E501,
+ # 'l' is perfectly unambiguous in a comprehension…
+ E741
diff --git a/.config/pylintrc b/.config/pylintrc
@@ -0,0 +1,6 @@
+[MESSAGES CONTROL]
+disable=invalid-name,
+ line-too-long,
+ missing-class-docstring,
+ missing-function-docstring,
+ missing-module-docstring