From: Ricardo Martincoski Date: Thu, 5 Oct 2017 21:42:11 +0000 (-0300) Subject: .flake8: add config file for Python code style X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=918a02ce224c0adf7dda3531df8a68d6a556b30a;p=buildroot.git .flake8: add config file for Python code style We recommend wrapping at 80 columns but we accept 132 columns when it makes more readable. Follow up of discussion at this thread: http://lists.busybox.net/pipermail/buildroot/2017-October/203624.html Cc: Arnout Vandecappelle Cc: Peter Korsgaard Cc: Thomas Petazzoni Cc: Yann E. MORIN Signed-off-by: Ricardo Martincoski Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000000..afdb967930 --- /dev/null +++ b/.flake8 @@ -0,0 +1,2 @@ +[flake8] +max-line-length=132