From: Joe Guo Date: Mon, 30 Jul 2018 06:25:46 +0000 (+1200) Subject: PEP8: add pycodestyle config in setup.cfg X-Git-Tag: tdb-1.3.17~2043 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4284f6042976a8d4a6fdb58edb66d198f64c87ae;p=thirdparty%2Fsamba.git PEP8: add pycodestyle config in setup.cfg Signed-off-by: Joe Guo Reviewed-by: Andrew Bartlett Reviewed-by: Douglas Bagnall --- diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000000..bb45d25c2f8 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,6 @@ +[pycodestyle] +# E501: line too long +ignore = E501 +exclude = bin,heimdal,wscript,third_party,wafsamba,tdb +show-source = true +statistics = true