-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
45 lines (39 loc) · 1.14 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
45
[MASTER]
extension-pkg-allow-list=pydantic
fail-under=10.0
ignore-patterns=
ignore=CVS
[MESSAGES CONTROL]
disable=
abstract-method, # https://stackoverflow.com/questions/30884804/
duplicate-code, # (overly aggressive)
expression-not-assigned, # (useful for list-comprehensions with side-effects)
fixme, # (comment this line to see all TODOs/FIXMEs)
implicit-str-concat, # (strings may be split across multiple lines)
logging-format-interpolation,
logging-fstring-interpolation,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
redefined-outer-name, # (needed for use of pytest fixtures)
too-few-public-methods,
too-many-ancestors,
too-many-instance-attributes,
wrong-import-order,
[REPORTS]
output-format=colorized
[LOGGING]
logging-format-style=new
logging-modules=logging
[MISCELLANEOUS]
notes=FIXME,TODO
[FORMAT]
ignore-long-lines=^\s*(# )?<?https?://\S+>?$
[BASIC]
argument-rgx=[a-z_][a-z0-9_]{1,30}$
check-quote-consistency=yes
check-str-concat-over-line-jumps=yes
good-names=i,j,k,e,x,_
max-returns=1
max-statements=50
variable-rgx=[a-z_][a-z0-9_]{1,30}$