From: Emmanuele Bassi Date: Wed, 5 Jul 2023 09:12:20 +0000 (+0100) Subject: Add flake8 configuration file X-Git-Tag: archive/raspbian/4.12.3+ds-1+rpi1~1^2^2^2~22^2~1^2~73^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=64308317f809abb851ca8b9f52d5a176aebf5212;p=gtk4.git 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. --- diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000000..e44b810841 --- /dev/null +++ b/.flake8 @@ -0,0 +1,2 @@ +[flake8] +ignore = E501