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.
This commit is contained in:
Emmanuele Bassi 2023-07-05 10:12:20 +01:00
parent ae2c10996a
commit 64308317f8

2
.flake8 Normal file
View File

@ -0,0 +1,2 @@
[flake8]
ignore = E501