File: .flake8

package info (click to toggle)
azure-devops-cli-extension 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 22,680 kB
  • sloc: python: 160,797; xml: 198; sh: 61; makefile: 56
file content (25 lines) | stat: -rw-r--r-- 629 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[flake8]
max-line-length = 120
max-complexity = 10
ignore =
    # line too long, it is covered by pylint
    E501,
    # bare except, bad practice, to be removed in the future
    E722,
    # imported but unused, too many violations, to be removed in the future 
    F401,
    # redefinition of unused, to be removed in the future  
    F811,
    # code flow is too complex, too many violations, to be removed in the future  
    C901,
    # line break after binary operator effect on readability is subjective  
    W504
exclude = 
    tests
    build
    tools
    scripts
    doc
    build_scripts
	*/test/*
    */devops_sdk/*