-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pylintrc
More file actions
38 lines (29 loc) · 843 Bytes
/
Copy path.pylintrc
File metadata and controls
38 lines (29 loc) · 843 Bytes
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
[MESSAGES CONTROL]
# Re-enable docstring and whitespace checks by removing them from the disable list.
# Keep select checks disabled to avoid noise from optional libraries and intentional design patterns.
disable=
invalid-name,
import-outside-toplevel,
logging-fstring-interpolation,
logging-not-lazy,
missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
[FORMAT]
max-line-length=120
[IMPORTS]
ignored-modules=
waveshare_epd,
inky,
anthropic,
photos,
config
[TYPECHECK]
# List of members which are set dynamically and missed by pylint inference
# for a given module, can be comma-separated.
generated-members=pygame.*
[DESIGN]
# Increase the limits slightly to be more pragmatic, but still encourage refactoring.
max-branches=15
max-statements=60
max-locals=20