summaryrefslogtreecommitdiff
path: root/.flake8
blob: e125df09e4f00231255a252c084c8248d35c2a98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Configuration file for flake 8. This is used by "make lint" and by the
# GIT commit hook script.
# T001 = print() statement

[flake8]
ignore =
    # ambiguous variable name 'l'
    E741,
    # line break after binary operator
    W504
per-file-ignores =
   setup.py:T001
   scripts/*:T001
   psutil/tests/runner.py:T001
   psutil/tests/test_memleaks.py:T001