-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
pylintrc
49 lines (44 loc) · 798 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
49
[MASTER]
load-plugins=pylint.extensions.no_self_use
reports=no
[BASIC]
good-names=
ex,
rd,
f,
i,
T,
ws
[FORMAT]
max-line-length=88
[TYPECHECK]
ignore=protobuf
ignored-modules=pyatv.protocols.mrp.protobuf
ignored-classes=
ProtocolMessage,
SetConnectionStateMessage,
SetStateMessage,
ContentItemMetadata,
CommandInfo,
PlaybackState,
ShuffleMode,
RepeatMode,
HandlerReturnStatus,
SendError,
DeviceClass
disable=
broad-except,
cyclic-import, # TODO: Bug in pylint?
locally-disabled,
duplicate-code,
fixme,
unused-argument,
no-self-use,
too-few-public-methods,
too-many-public-methods,
too-many-arguments,
too-many-instance-attributes,
too-many-lines,
too-many-positional-arguments
[EXCEPTIONS]
overgeneral-exceptions=builtins.Exception