s4:rpc_server: add some const to dcesrv_handle_fetch()
[samba.git] / setup.cfg
1 [pycodestyle]
2 # refer to: https://pep8.readthedocs.io/en/1.4.6/intro.html#error-codes
3 # E126: continuation line over-indented for hanging indent
4 # E131: continuation line unaligned for hanging indent
5 # E203: whitespace before ':'
6 # E221: multiple spaces before operator
7 # E501: line too long
8 # E722: do not use bare 'except'
9 ignore = E126,E131,E203,E221,E501,E722
10 exclude = bin,heimdal,wscript,third_party,wafsamba,tdb,.ycm_extra_conf.py,examples,python/samba/subunit/run.py,autobuild.py
11 show-source = true
12 statistics = true