From 1a70a33a81316c583cbd55efbd611d5971ac0859 Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Mon, 31 Oct 2022 11:07:26 -0600 Subject: [PATCH] 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) --- .flake8 | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .flake8 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 -- 2.47.2