forked from podengo-project/ipa-hcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pylintrc
48 lines (42 loc) · 824 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
48
[MASTER]
persistent=yes
jobs=0
extension-pkg-whitelist=
_ldap,
cryptography,
gssapi,
netifaces
[CLASSES]
valid-metaclass-classmethod-first-arg=cls
[MESSAGES CONTROL]
enable=
all,
disable=
# all informational warnings
I,
# unknown pylint option
# bad-option-value,
# TODOs
missing-docstring,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
no-name-in-module,
invalid-name,
no-member,
fixme,
consider-using-f-string,
# complexity
too-many-instance-attributes,
too-many-arguments,
too-many-locals,
too-many-branches,
too-many-nested-blocks,
too-many-statements,
# style choices
no-else-return,
no-else-raise,
duplicate-code,
[REPORTS]
output-format=colorized
reports=no