forked from opengisch/qgis-plugin-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (46 loc) · 1.11 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
[metadata]
description_file = README.md
# -- 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*,
venv*,
# do not watch on tests
tests,
# do not consider external packages
*/external/*,
ext_libs/*,
qgis_plugin_CI_testing/*
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]
ensure_newline_before_comments = True
force_grid_wrap = 0
include_trailing_comma = True
line_length = 88
multi_line_output = 3
profile = black
use_parentheses = True
skip=
qgis_plugin_CI_testing/,
.venv,
venv,