File: pylintrc

package info (click to toggle)
python-azure-devtools 1.2.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 832 kB
  • sloc: python: 1,850; makefile: 8; sh: 2
file content (32 lines) | stat: -rw-r--r-- 930 bytes parent folder | download | duplicates (3)
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
26
27
28
29
30
31
32
[MESSAGES CONTROL]
# For all codes, run 'pylint --list-msgs' or go to 'http://pylint-messages.wikidot.com/all-codes'
# C0111 Missing docstring
# C0103 Invalid %s name "%s"
# I0011 Warning locally suppressed using disable-msg
# W0511 fixme
# R0401 Cyclic import (because of https://github.com/PyCQA/pylint/issues/850)
# R0913 Too many arguments - Due to the nature of the CLI many commands have large arguments set which reflect in large arguments set in corresponding methods.
disable=
    bad-option-value,
    C0111,
    C0103,
    W0511,
    R0401,
    useless-object-inheritance,
    import-outside-toplevel

[FORMAT]
max-line-length=120

[VARIABLES]
# Tells whether we should check for unused import in __init__ files.
init-import=yes

[DESIGN]
# Maximum number of locals for function / method body
# max-locals=8
# Maximum number of branch for function / method body
# max-branches=16

[SIMILARITIES]
min-similarity-lines=8