-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpylintrc
More file actions
39 lines (33 loc) · 694 Bytes
/
pylintrc
File metadata and controls
39 lines (33 loc) · 694 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
39
[MASTER]
ignore=
load-plugins =
pylint.extensions.typing,
pylint.extensions.code_style,
py-version = 3.10
[BASIC]
good-names =
i,j,k,_,fp,it,ex,logger
[MESSAGE CONTROL]
# Reasons disabled:
# superfluous-parens - used with :=
# duplicate-code - for scripts acceptable
disable =
superfluous-parens,
missing-docstring,
too-many-instance-attributes,
too-many-return-statements,
too-many-locals,
too-many-branches,
too-many-statements,
too-many-arguments,
too-few-public-methods,
invalid-name,
duplicate-code,
[FORMAT]
max-line-length = 119
[REPORTS]
score = no
[TYPING]
runtime-typing = no
[CODE_STYLE]
max-line-length-suggestions = 72