1[pycodestyle]
2exclude=rdr.py,dynatree_server.py
3max-line-length=100
4# W191: indentation contains tabs
5# E101: indentation contains mixed spaces and tabs
6# E501: line too long (fixed at 80 chars)
7# E225: missing whitespace around operator (too strict)
8# E203: whitespace before ':' (problem: raw_ints[cur.rowcount, :])
9# E116: unexpected indentation (comment)
10# E121: indentation is not a multiple of four
11# E122: missing indentation or outdented
12# E123: closing bracket does not match indentation of opening bracket's line
13# E124: closing bracket does not match visual indentation
14# E125: continuation line does not distinguish itself from next logical line
15# E126: continuation line over-indented for hanging indent
16# E127: over-indented for visual indent
17# E128: continuation line under-indented for visual indent
18ignore=W191,E101,E121,E122,E123,E124,E125,E126,E127,E128,E116
19# repeat=True