File: .flake8

package info (click to toggle)
osinfo-db 0.20250606-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 28,856 kB
  • sloc: python: 2,161; sh: 357; makefile: 94
file content (15 lines) | stat: -rw-r--r-- 475 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[flake8]
# same as in 'black'
max-line-length = 88
ignore =
    # E203 whitespace before ':'
    # result of black-formatted code
    E203,
    # line break before binary operator
    W503,
per-file-ignores =
    # we need to add the path to the local modules before importing them
    scripts/osinfo-db-add-iso.py: E402
    # E501 line too long (* > 88 characters)
    # there is a wide ASCII graph on the comment at the top of the script
    scripts/updates/nixos.py: E501