-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
41 lines (34 loc) · 969 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
38
39
40
41
[MASTER]
# Add files or directories to the blacklist. They should be base names, not paths.
ignore=
.git
.idea
.venv
.vscode
.mypy_cache
.pytest_cache
__pycache__
output
testdata
[MESSAGES CONTROL]
disable=
logging-fstring-interpolation,
logging-format-interpolation,
unused-wildcard-import,
missing-docstring,
no-name-in-module,
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\..*