forked from SUSE/pcw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpylintrc
35 lines (31 loc) · 794 Bytes
/
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
[MASTER]
disable=
C0114, # missing-module-docstring
C0115, # missing-class-docstring
C0116, # missing-function-docstring
C0206, # Consider iterating with .items()
C0415, # Import outside toplevel
E1101, # no-member
R1702, # Too many nested blocks
W0237, # arguments-renamed
W0603, # Using the global statement
W0703, # broad-except
W0719, # broad-exception-raised
recursive = true
fail-under=9.9
[tool.pylint.format]
expected-line-ending-format =
ignore-long-lines = "^\\s*(# )?<?https?://\\S+>?$"
indent-after-paren = 4
indent-string = " "
max-line-length = 140
max-module-lines = 1000
single-line-class-stmt = false
single-line-if-stmt = false
[tool.pylint.main]
jobs = 1
limit-inference-results = 100
persistent = true
reports = false
score = true
suggestion-mode = true