From 64308317f809abb851ca8b9f52d5a176aebf5212 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Wed, 5 Jul 2023 10:12:20 +0100 Subject: [PATCH] Add flake8 configuration file Ignore long lines; most of our Python scripts generate code or other types of files, which makes long lines a necessity. We should validate all our Python script in our CI as well. --- .flake8 | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .flake8 diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000000..e44b810841 --- /dev/null +++ b/.flake8 @@ -0,0 +1,2 @@ +[flake8] +ignore = E501