-
Notifications
You must be signed in to change notification settings - Fork 30
/
.pylintrc
37 lines (35 loc) · 990 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
[MASTER]
extension-pkg-whitelist=PyQt5, lxml
generated-members=PyQt5.QtCore.Qt.*, PyQt5.QtGui.QFont.*, PyQt5.QtCore.Qt.Key.*
[MESSAGES CONTROL]
disable=
missing-docstring,
trailing-whitespace,
line-too-long,
unused-import,
invalid-name,
unsubscriptable-object,
missing-function-docstring,
missing-module-docstring,
wrong-import-order,
too-many-instance-attributes,
too-many-arguments,
too-many-public-methods,
duplicate-code,
no-else-return,
consider-merging-isinstance,
protected-access,
too-many-statements,
too-few-public-methods,
broad-exception-caught,
broad-exception-raised,
unnecessary-lambda,
too-many-branches,
too-many-locals,
too-many-lines,
too-many-return-statements,
f-string-without-interpolation,
too-many-nested-blocks,
attribute-defined-outside-init, # to be dropped
use-maxsplit-arg,
no-member # to be dropped, for various enum classes of PyQt5