-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pylintrc
More file actions
43 lines (37 loc) · 838 Bytes
/
.pylintrc
File metadata and controls
43 lines (37 loc) · 838 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
40
41
42
43
# Pylint configuration.
#
# .pylintrc guide: https://github.com/PyCQA/pylint/blob/cfc393a8dff9ec09bd2fcb25857e772ae04a4991/examples/pylintrc
#
[MAIN]
extension-pkg-whitelist=
pydantic, # binary module validation, Pydantic/Pylint recommendation.
ignore=
LICENSE,
.pylintrc,
ignore-patterns=
^(.+).ini$,
^(.+).md$,
^(.+).sh$,
^(.+).service$,
^(.+).json,
^(.+).yml,
^(.+).yaml,
^(.+).toml,
^(.+).svg,
^(.+).html,
^(.+).png,
^(.+).htm,
^(.+).xml,
^\.,
ignore-paths=
requirements/.,
tests/fixtures/vcrpy/.,
Makefile,
justfile,
[MESSAGES CONTROL]
disable =
C0301, # line-length too long, see Black documented recommendations.
C0115, # No docstring for Class.
R0801, # Similar lines detected.
# TODO: Fixup
R0401, # Cyclic import.