forked from mu-editor/mu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
34 lines (32 loc) · 818 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
[flake8]
# see http://pycodestyle.pycqa.org/en/latest/intro.html#error-codes
ignore =
# whitespace before ':'
# Ignored because of https://github.com/PyCQA/pycodestyle/issues/373
E203
# do not assign a lambda expression, use a def
E731
# module level import not at top of file
E402
# line break occurred before a binary operator
W503
# line break after binary operator
W504
exclude =
./docs/
./mu/contrib/
./mu/modes/api/
./package/
./utils/
# Common names for virtual environment directories.
./venv/
./.venv*/
./env/
./.env/
./local-scripts/
max-line-length = 88
[coverage:run]
omit = mu/contrib/*, mu/mu_debug.py, mu/__main__.py, mu/wheels/*
[tool:pytest]
filterwarnings = ignore::DeprecationWarning
addopts = --random-order