forked from rackspace/runway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
59 lines (59 loc) · 1.35 KB
/
setup.cfg
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
52
53
54
55
56
57
58
59
[flake8]
classmethod-decorators =
classmethod,
root_validator,
validator
docstring-convention = all
exclude =
*.egg-info,
*.pyc,
*.pyi,
.demo,
.eggs,
.git,
.github,
.mypy_cache,
.runway,
.serverless,
.terraform,
.venv,
__pycache__,
artifacts,
build,
dist,
docs/.venv,
docs/build,
docs/source/apidocs,
node_modules,
npm,
typings,
quickstarts
extend-ignore =
# BaseException.message` has been deprecated false positive for custom exceptions
B306,
# No blank lines allowed after function docstring
D203,
# Multi-line docstring summary should start at the second line
D213,
# Section underline is over-indented
D215,
# First word of the first line should be properly capitalized
D403,
# Section name should end with a newline
D406,
# Missing dashed underline after section
D407,
# Section underline should be in the line following the section’s name
D408,
# Section underline should match the length of its name
D409,
# First line should end with a period, question mark, or exclamation point
D415,
# whitespace before ':' - black compatible
E203,
# line break before operator
W503
ignore-decorators = abstractmethod|overload
max-line-length = 98
show-source = true
statistics = true