forked from xcaeag/Nominatim-Qgis-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
64 lines (58 loc) · 1.41 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
# -- Packaging --------------------------------------
[metadata]
description-file = README.md
[qgis-plugin-ci]
plugin_path = nominatim
github_organization_slug = xcaeag
project_slug = Nominatim-Qgis-Plugin
# -- Code quality ------------------------------------
[flake8]
count = True
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/conf.py,
# The old directory contains Flake8 2.0
old,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist,
# This contains local virtual environments
.venv*,
# do not watch on tests
tests,
# do not consider external packages
*/external/*, ext_libs/*
ignore = E121,E123,E126,E203,E226,E24,E704,W503,W504
max-complexity = 15
max-doc-length = 130
max-line-length = 100
output-file = dev_flake8_report.txt
statistics = True
tee = True
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 88
[coverage:run]
branch = True
include =
nominatim/*
omit =
.venv/*
*tests*
[coverage:report]
exclude_lines =
if self.debug:
pragma: no cover
raise NotImplementedError
if __name__ == .__main__.:
ignore_errors = True
show_missing = True