From: Kamalesh Babulal Date: Mon, 31 Oct 2022 17:07:26 +0000 (-0600) Subject: python: Add flake8 configuration X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a70a33a81316c583cbd55efbd611d5971ac0859;p=thirdparty%2Flibcgroup.git python: Add flake8 configuration flake8 Python lint tool, allows us to customize and extend the rules. Add our own rule to allow a 100-character width in the sources. Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka (cherry picked from commit 5eee3084f292819011f08f8e9fa6a944e0575f17) --- diff --git a/.flake8 b/.flake8 new file mode 100644 index 00000000..7da1f960 --- /dev/null +++ b/.flake8 @@ -0,0 +1,2 @@ +[flake8] +max-line-length = 100