File: .flake8

package info (click to toggle)
python-pyproj 3.7.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,720 kB
  • sloc: python: 13,468; sh: 273; makefile: 90
file content (11 lines) | stat: -rw-r--r-- 346 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
[flake8]
max-line-length = 88
ignore =
    # Unnecessary dict/list/tuple call - rewrite as a literal
    C408
    # whitespace before ':' - doesn't work well with black
    E203
    # missing whitespace around operator - let black worry about that
    E225
    # line break occurred before a binary operator - let black worry about that
    W503