forked from smart-social-contracts/kybra-simple-db
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
32 lines (28 loc) · 743 Bytes
/
setup.cfg
File metadata and controls
32 lines (28 loc) · 743 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
[flake8]
max-line-length = 200
exclude = .git,__pycache__,build,dist,.basilisk,tests/.basilisk
ignore = F403,F405,W503,E501,W391,F401,E722,F811,E704
[flake8:**/tests/*]
ignore = F403,F405,W503,F841
[isort]
profile = black
multi_line_output = 3
[mypy]
python_version = 3.10
warn_return_any = False
warn_unused_configs = True
disallow_untyped_defs = False
disallow_incomplete_defs = False
check_untyped_defs = False
disallow_untyped_decorators = False
no_implicit_optional = False
warn_redundant_casts = True
warn_unused_ignores = True
warn_no_return = True
warn_unreachable = True
ignore_errors = True
exclude = tests/.basilisk
[tool:pytest]
testpaths = tests
python_files = test_*.py
addopts = --cov=ic_python_db --cov-report=term-missing