Spaces:
Sleeping
Sleeping
File size: 562 Bytes
74c716c |
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 35 |
[tool.isort]
force_grid_wrap = 0
include_trailing_comma = true
line_length = 79
multi_line_output = 3
use_parentheses = true
[tool.pytest.ini_options]
addopts = """
--cov-report term-missing \
--cov src/ -ra"""
[tool.black]
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
include = '\.pyi?$'
line-length = 79
target-version = ['py36', 'py37', 'py38', 'py39']
|