-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
36 lines (35 loc) · 961 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
[SIMILARITIES]
ignore-imports=yes
[MASTER]
disable=
C0103, # invalid-name
C0114, # missing-module-docstring
C0115, # missing-class-docstring
C0116, # missing-function-docstring
C0301, # line-too-long
E0401, # import-error
E1101, # no-member
E1136, # unsubscriptable-object
R0201, # no-self-use
R0801, # duplicate-code
R0903, # too-few-public-methods
R0902, # too-many-instance-attributes
R0904, # too-many-public-methods
R0912, # too-many-branches
R0913, # too-many-arguments
R0903, # too-few-public-methods
R0914, # too-many-locals
R1705, # no-else-return
R1729, # use-a-generator
W0102, # dangerous-default-value
W0201, # attribute-defined-outside-init
W0511, # fixme
W0612, # unused-variable
E0611, # no name in module
R0915, # too many statements
E1133, # non iterable value
ignore=
Dockerfile,
README.md,
requirements.txt,
pytest.ini,