-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.pylintrc
46 lines (37 loc) · 931 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
[MASTER]
# Add your path to the PYTHONPATH
init-hook='import sys; sys.path.append("YOUR PATH")'
[BASIC]
good-names=quipus
[MESSAGES CONTROL]
disable=
too-many-locals,
too-many-arguments,
too-few-public-methods,
missing-module-docstring,
; missing-class-docstring,
; missing-function-docstring,
unspecified-encoding,
anomalous-backslash-in-string
[FORMAT]
max-line-length=99 # PEP 8 code width
indent-string=' '
ignore-long-lines=^(\s*#.*|\s*print\(.*|\s*https?:\/\/[^\s]+|\s*def .+\(.*\):|\s*if .+:)$
[DESIGN]
max-args=5
max-locals=15
max-returns=6
max-branches=12
max-statements=50
max-parents=7
max-attributes=7
[TYPECHECK]
ignored-modules=flask_sqlalchemy,sqlalchemy,sqlalchemy.orm,flask_marshmallow,marshmallow
[REPORTS]
reports=no
[LOGGING]
disable=logging-format-interpolation,logging-not-lazy
[IMPORTS]
disable=import-error,ungrouped-imports
[SIMILARITIES]
min-similarity-lines=4