-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
54 lines (49 loc) · 1.05 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
[flake8]
ignore = E1137, E722, D413, D401, D205, W503, W504, W605, F841, E203
max-line-length = 120
exclude =
.git,
.vscode,
.settings,
__pycache__,
docs,
site-source,
dist,
setup.py,
statistics=True
[tool:pytest]
filterwarnings =
error
ignore::UserWarning
ignore::DeprecationWarning
ignore::RuntimeWarning
# ignored by default
ignore::ImportWarning
ignore::PendingDeprecationWarning
[tool:isort]
line_length = 120
indent = ' '
length_sort = 1
force_single_line = True
import_heading_stdlib = Standard library imports
import_heading_firstparty = Local imports
import_heading_thirdparty = Third-party imports
sections = FUTURE, STDLIB, THIRDPARTY, FIRSTPARTY, LOCALFOLDER
skip = .asv
[mypy]
files = mdx_changelog/
ignore_missing_imports = True
[report]
exclude_lines =
pragma: no cover
def __repr__
if settings.DEBUG
raise NotImplementedError
if __name__ == .__main__.:
def test
[coverage:run]
source = markdown_changelog
parallel = True
omit = tests/*
*\__init__.py
setup.py