From 21e96cb6c4b678bff9d8345220bfe19054395c73 Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Sun, 11 Apr 2021 18:40:39 +0200 Subject: Disable some warnings from Python linters --- .config/flake8 | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .config/flake8 (limited to '.config/flake8') diff --git a/.config/flake8 b/.config/flake8 new file mode 100644 index 0000000..94b8d9e --- /dev/null +++ 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 -- cgit v1.2.3