File: .flake8

package info (click to toggle)
python-psutil 5.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,512 kB
  • sloc: python: 18,651; ansic: 15,029; makefile: 441; javascript: 153
file content (14 lines) | stat: -rw-r--r-- 364 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Configuration file for flake 8. This is used by "make lint" and by the
# GIT commit hook script.
# T001 = print() statement

[flake8]
ignore =
    # line break after binary operator
    W504
per-file-ignores =
   setup.py:T001
   scripts/*:T001
   scripts/internal/convert_readme.py:E501,T001
   psutil/tests/runner.py:T001
   psutil/tests/test_memleaks.py:T001