forked from brunorijsman/rift-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pylintrc
23 lines (18 loc) · 933 Bytes
/
pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[MASTER]
init-hook='import sys; sys.path.append("rift"); sys.path.append("tests")'
ignore=rift/common,rift/encoding
[MESSAGES CONTROL]
disable=
missing-docstring, # Temporary, until I add the docstrings
fixme, # Temporary, until I fix all the TODOs and FIXMEs
too-many-arguments, # Matter of taste
too-many-instance-attributes, # Matter of taste
too-few-public-methods, # Matter of taste
too-many-public-methods, # Matter of taste
too-many-branches, # Matter of taste
too-many-nested-blocks, # Matter of taste
too-many-return-statements, # Matter of taste
no-self-use, # Matter of taste
no-else-return, # Matter of taste
duplicate-code, # Matter of taste
extension-pkg-whitelist=netifaces