File: .flake8

package info (click to toggle)
python-jsonschema-specifications 2023.12.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 248 kB
  • sloc: python: 180; makefile: 21
file content (12 lines) | stat: -rw-r--r-- 338 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
[flake8]
ban-relative-imports = true
inline-quotes = "
ignore =
    # Barring function calls in default args. Ha, no.
    B008,
    # See https://github.com/PyCQA/flake8-bugbear/issues/131
    B306,
    # (flake8 default) old PEP8 boolean operator line breaks
    W503,
    # See https://github.com/PyCQA/pycodestyle/issues/373
    E203,