-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.pylintrc
More file actions
23 lines (22 loc) · 554 Bytes
/
Copy path.pylintrc
File metadata and controls
23 lines (22 loc) · 554 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[MASTER]
# Minimal pylintrc to satisfy pre-commit pylint hook.
ignore=tests
[MESSAGES CONTROL]
# Disable conventions that are noisy for this project.
disable=
missing-docstring,
invalid-name,
too-few-public-methods
,too-many-instance-attributes
,too-many-branches
,unused-argument
,too-many-statements
,superfluous-parens
,too-many-lines
,line-too-long
,useless-return
,too-many-public-methods
,too-many-arguments
,duplicate-code
,too-many-return-statements
,too-many-positional-arguments