-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.cfg
More file actions
26 lines (22 loc) · 758 Bytes
/
setup.cfg
File metadata and controls
26 lines (22 loc) · 758 Bytes
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
[pep8]
max-line-length = 120
exclude = *migrations*
ignore = E309
[flake8]
exclude = migrations node_modules louhi.py
# Left to 120 while Black uses 88 as some strings are not split by Black even
# if they are longer then 88. For instance in the case of long single strings and comments.
# Code will still always be at most 88 chars long according to Black.
# TODO: Make everything 88 chars long.
max-line-length = 120
max-complexity = 15
[tool:pytest]
DJANGO_SETTINGS_MODULE = kaavapino.settings
norecursedirs = bower_components node_modules .git .idea
doctest_optionflags = NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL ALLOW_UNICODE
[pydocstyle]
ignore=D100,D104,D105,D200,D203,D400
[mypy]
python_version=3.9
platform=linux
ignore_missing_imports=True