-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.cfg
135 lines (124 loc) · 2.94 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
[check-manifest]
ignore =
.coveragerc
.isort.cfg
.pydocstyle
.readthedocs.yml
.remarkrc
.style.yapf
.travis.yml
.yapfignore
admin
admin/*
API.rst
BACKENDS.rst
bin
bin/*
CHANGELOG.rst
CONTRIBUTING.rst
doc8.ini
docs
docs/*
minidcos.rb
LICENSE
Makefile
README.rst
codecov.yaml
dev-requirements.txt
indirect-requirements.txt
lint.mk
mypy.ini
package.json
packaging-requirements.txt
pylintrc
requirements.txt
spelling_private_dict.txt
src/vendorize.toml
tests
tests/*
vagrant
vagrant/*
*.enc
*.pyc
*.rb
*__pycache__*
*.DS_Store
[flake8]
ignore=L205,L101,L211,L303,L302,W503
exclude=./src/*/_vendor/,
./DCOS*/src/,
./src/*/_version.py,
./versioneer.py,
[versioneer]
VCS = git
style = pep440
versionfile_source = src/dcos_e2e/_version.py
versionfile_build = dcos_e2e/_version.py
tag_prefix =
parentdir_prefix = dcos_e2e-
[tool:pytest]
log_cli=true
log_cli_level=INFO
[coverage:run]
branch = True
omit =
*_vendor*
src/*/_version.py
# Travis CI does not support VirtualBox so we cannot test the Vagrant
# backend there.
src/*/backends/_vagrant/*
[coverage:report]
exclude_lines =
pragma: no cover
[yapf]
DEDENT_CLOSING_BRACKETS = true
[mypy]
check_untyped_defs = True
disallow_incomplete_defs = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_decorators = False
disallow_untyped_defs = True
follow_imports = 'normal'
ignore_missing_imports = True
no_implicit_optional = True
strict_equality = True
strict_optional = True
warn_no_return = True
warn_redundant_casts = True
warn_return_any = True
warn_unused_configs = True
warn_unused_ignores = True
[mypy-versioneer,*/_vendor/*,*/_version]
ignore_errors = True
[doc8]
max-line-length = 2000
ignore-path = ./node_modules,./src/*.egg-info/,./docs/*/build/spelling/output.txt,src/*/_vendor,./DCOS E2E-*/
[isort]
multi_line_output=3
include_trailing_comma=true
not_skip=__init__.py
skip=_vendor,
versioneer.py,
setup.py,
[pydocstyle]
# No summary lines
# - D200
# - D205
# - D400
# We don't want blank lines before class docstrings
# - D203
# We don't need docstrings to start at the first line
# - D212
# Allow blank lines after function docstrings
# - D202
# Section names do not need to end in newlines
# - D406
# Section names do not need dashed underlines
# - D407
# Click uses \b to stop wrapping, so we must allow backslashes in docstrings
# - D301
# No blank line is needed after the last section
# We do not care about the imperative mood.
# - D401
ignore = D200,D202,D203,D205,D212,D400,D406,D407,D413,D301,D401