forked from 3liz/qgis-atlasprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
42 lines (39 loc) · 737 Bytes
/
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
[qgis-plugin-ci]
plugin_path = atlasprint
github_organization_slug = 3liz
project_slug = qgis-atlasprint
[isort]
multi_line_output = 3
include_trailing_comma = True
use_parentheses = True
ensure_newline_before_comments = True
lines_between_types = 1
skip =
tests/.local/,
tests/.cache/,
.venv/,
venv/,
[flake8]
max-line-length = 120
ignore = E402
# Closing bracket does not match visual indentation
E124,
E125,
E126,
# Missing whitespace
E225,
E226,
# Import not at top of file
E402,
# Line length
# E501,
# Bad double quotes
Q000,
Q001,
Q003,
# Line break before binary operator
W503,
exclude =
.venv/,
tests/.local/,
tests/conftest.py,