forked from home-assistant-libs/aioshelly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpylintrc
50 lines (43 loc) · 1.23 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[MASTER]
ignore=tests
# Use a conservative default here; 2 should speed up most setups and not hurt
# any too bad. Override on command line as appropriate.
# Disabled for now: https://github.com/PyCQA/pylint/issues/3584
#jobs=2
persistent=no
extension-pkg-whitelist=ciso8601,cv2
[BASIC]
good-names=id,i,j,k,ex,Run,_,fp,T,ev,ip
max-public-methods=25
[MESSAGES CONTROL]
# Reasons disabled:
# format - handled by black
# duplicate-code - unavoidable
# cyclic-import - doesn't test if both import on load
# too-many-* - are not enforced for the sake of readability
# abstract-method - with intro of async there are always methods missing
# inconsistent-return-statements - doesn't handle raise
# wrong-import-order - isort guards this
disable=
format,
abstract-method,
cyclic-import,
duplicate-code,
inconsistent-return-statements,
too-many-branches,
too-many-instance-attributes,
too-many-public-methods,
wrong-import-order,
too-few-public-methods
# enable useless-suppression temporarily every now and then to clean them up
enable=
use-symbolic-message-instead,
[REPORTS]
score=no
[TYPECHECK]
# For attrs
ignored-classes=_CountingAttr
[FORMAT]
expected-line-ending-format=LF
[EXCEPTIONS]
overgeneral-exceptions=BaseException,Exception