File size: 424 Bytes
9c35031 |
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 |
[pytest]
testpaths = "tests"
[tool.black]
line-length = 88
target_version = ["py37"]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
known_third_party = ["func_argparse"]
skip = ["third_party", "data"]
[mypy]
python_version = 3.7
check_untyped_defs = true
[mypy-numpy]
ignore_missing_imports = true
[mypy-pytest]
ignore_missing_imports = true
|