-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.pylintrc
48 lines (40 loc) · 1.2 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
[MASTER]
# Add files or directories to the blacklist. They should be base names, not
# paths.
ignore=
.git
.idea
.vscode
.mypy_cache
.pytest_cache
__pycache__
ref
output
livedata
# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code.
extension-pkg-whitelist=pydantic,re
[MESSAGES CONTROL]
disable=
logging-fstring-interpolation,
logging-format-interpolation,
useless-super-delegation,
unused-wildcard-import,
missing-docstring,
ungrouped-imports,
wildcard-import,
unused-import,
invalid-name,
format
[FORMAT]
max-line-length=129
[TYPECHECK]
# List of decorators that produce context managers, such as
# contextlib.contextmanager. Add to this list to register other decorators that
# produce valid context managers.
contextmanager-decorators=contextlib.contextmanager
# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E1101 when accessed. Python regular
# expressions are accepted.
generated-members=re\..*