forked from marcofavorito/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
47 lines (35 loc) · 982 Bytes
/
.pylintrc
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[MASTER]
ignore-patterns=
ignore=
[MESSAGES CONTROL]
disable= # C0103,C0301,R0801,W1514,W1505
# See here for more options: https://www.codeac.io/documentation/pylint-configuration.html
[IMPORTS]
ignored-modules=
[DESIGN]
# min-public-methods=1
# max-public-methods=36
# max-returns=10
# max-bool-expr=7
max-args=7
max-locals=20
# max-statements=80
# max-parents=10
# max-branches=24
# max-attributes=8
[REFACTORING]
# max-nested-blocks=6
[SPELLING]
# uncomment to enable
# spelling-dict=en_US
# List of comma separated words that should not be checked.
spelling-ignore-words=nocover,pragma,params,noqa,kwargs,str,async,json,boolean,config,pytest,args,url,tx,jsonschema,traceback,api,nosec
[SIMILARITIES]
# Minimum lines number of a similarity.
min-similarity-lines=10
# Ignore comments when computing similarities.
ignore-comments=yes
# Ignore docstrings when computing similarities.
ignore-docstrings=yes
# Ignore imports when computing similarities.
ignore-imports=no