File: .flake8

package info (click to toggle)
python-rioxarray 0.19.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,304 kB
  • sloc: python: 7,893; makefile: 93
file content (15 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[flake8]
max_line_length = 88
ignore =
    # line too long - let black handle that
    E501
    # 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
    # line break occurred adter a binary operator - let black worry about that
    W504