-
Notifications
You must be signed in to change notification settings - Fork 24
/
pylintrc
26 lines (21 loc) · 1.14 KB
/
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
[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
consider-using-f-string, # Should start using f-strings
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-else-return, # Matter of taste
duplicate-code, # Matter of taste
too-many-locals, # Matter of taste
multiple-statements, # Get unfounded reports of these in 3.8
no-member # python 3.6 moved APIs from 3.5
extension-pkg-whitelist=netifaces,pytricia