-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.pylintrc
More file actions
51 lines (46 loc) · 1.12 KB
/
.pylintrc
File metadata and controls
51 lines (46 loc) · 1.12 KB
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
49
50
51
[MASTER]
ignore-paths=.*deprecated.*.py, .*scripts.*.py
init-hook='import os,sys; sys.path.append(os.path.abspath(os.path.dirname(__file__)))'
[FORMAT]
max-line-length=120
ignore-long-lines=^\s*# .*https?://\S+.*\S$
[MESSAGES CONTROL]
disable=
missing-docstring,
broad-exception-caught,
no-member,
no-name-in-module,
no-self-argument,
invalid-name,
c-extension-no-member,
consider-using-f-string,
fixme,
use-dict-literal,
use-list-literal,
consider-using-set-comprehension,
consider-using-in,
consider-using-from-import,
useless-return,
too-many-branches,
unspecified-encoding,
useless-object-inheritance,
consider-iterating-dictionary,
consider-using-dict-items,
no-else-continue,
protected-access,
too-many-public-methods,
consider-using-enumerate,
superfluous-parens,
no-else-return,
arguments-differ,
unused-argument,
import-outside-toplevel,
consider-using-generator,
too-many-statements,
duplicate-code,
logging-fstring-interpolation,
[DESIGN]
max-args=12
max-locals=50
min-public-methods=1
max-attributes=25