-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathsetup.cfg
More file actions
34 lines (27 loc) · 744 Bytes
/
setup.cfg
File metadata and controls
34 lines (27 loc) · 744 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
27
28
29
30
31
32
33
34
[flake8]
exclude = .venv/*,venv/*,tox/*,specs/*
ignore = E123,E128,E203,E266,E402,F405,E501,W503,E731,W601
max-line-length = 119
[isort]
profile = black
multi_line_output = 3
[tool:pytest]
addopts = --tb=short --ds=takahe.settings --import-mode=importlib
filterwarnings =
ignore:There is no current event loop
ignore:No directory at
ignore:DateTimeField Post.created
ignore:'index_together' is deprecated
ignore:Deprecated call to
ignore:pkg_resources is deprecated as an API
[mypy]
warn_unused_ignores = True
exclude = tests
[mypy-django.*]
ignore_missing_imports = True
[mypy-urlman.*]
ignore_missing_imports = True
[mypy-cryptography.*]
ignore_missing_imports = True
[mypy-*.migrations.*]
ignore_errors = True