File: .flake8

package info (click to toggle)
paramiko 4.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,424 kB
  • sloc: python: 18,843; xml: 19; makefile: 5
file content (9 lines) | stat: -rw-r--r-- 415 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
[flake8]
exclude = sites,.git,build,dist,demos,.cci_pycache
# NOTE: W503, E203 are concessions to black 18.0b5 and could be reinstated
# later if fixed on that end.
# NOTE: E722 seems to only have started popping up on move to flake8 3.6.0 from
# 2.4.0. Not sure why, bare excepts have been a (regrettable) thing forever...
ignore = E124,E125,E128,E261,E301,E302,E303,E402,E721,W503,E203,E722
max-line-length = 79