forked from camigomezdev/dojo_datastructures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
44 lines (36 loc) · 1.39 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
[BASIC]
extension-pkg-whitelist=pydantic
[MASTER]
# 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=
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=80
[MESSAGE CONTROL]
# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
# multiple time.
# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
# it should appear only once).
disable = too-few-public-methods,
no-name-in-module,
abstract-class-instantiated,
protected-access
[DESIGN]
# Maximum number of parents for a class (see R0901).
max-parents=10
[SIMILARITIES]
# Minimum lines number of a similarity.
min-similarity-lines=4
[MISCELLANEOUS]
# List of note tags to take in consideration, separated by a comma.
notes=FIXME,XXX,TODO
[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