aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/debugger/setup.cfg
blob: 7b75dd8860aca158e9174239ab7dca62d920ca52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[pycodestyle]
max-line-length = 100
ignore =
    # E222 - multiple spaces after operator: Used for alignments
    E222,
    # E241 - multiple spaces after ',': Used for alignments
    E241,
    # E265 - block comment should start with '# ': We have a bunch of #warn(foo) lines
    # a space after # would leave an incorrect indentation after uncommenting
    E265,
    # E402 - module level import not at top of file: Sometimes we need to adjust the sys.path before
    # we can import
    E402,
    # E722 - do not use bare except, specify exception instead: TODO
    E722