summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorJoe Guo <joeg@catalyst.net.nz>2018-07-30 18:25:46 +1200
committerDouglas Bagnall <dbagnall@samba.org>2018-08-24 07:49:31 +0200
commit4284f6042976a8d4a6fdb58edb66d198f64c87ae (patch)
treeadc3587a7c245cd08fdd2826cfa5efcc7bae58c4 /setup.cfg
parentc9f2fdea1dc91bf692fba2b74882371b0b35e1dc (diff)
downloadsamba-4284f6042976a8d4a6fdb58edb66d198f64c87ae.tar.gz
PEP8: add pycodestyle config in setup.cfg
Signed-off-by: Joe Guo <joeg@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg6
1 files changed, 6 insertions, 0 deletions
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