File: .flake8

package info (click to toggle)
level-zero 1.28.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,308 kB
  • sloc: cpp: 149,246; ansic: 16,655; python: 12,807; makefile: 5
file content (14 lines) | stat: -rw-r--r-- 506 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[flake8]
max-line-length = 140
extend-ignore = 
    # F403: 'from module import *' used; unable to detect undefined names
    # F405: name may be undefined, or defined from star imports
    # Acceptable for ctypes bindings where wildcard imports are idiomatic
    F403,
    F405,
    # E266: too many leading '#' for block comment
    # Used for visual section separators
    E266
per-file-ignores =
    # Allow module-level imports not at top of file in examples
    source/examples/pyzes_example.py:E402