mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-08 16:53:23 +00:00
21 lines
325 B
TOML
21 lines
325 B
TOML
[tool.black]
|
|
line-length=110
|
|
|
|
[tool.isort]
|
|
line_length = 110
|
|
known_first_party = "vcrpy"
|
|
multi_line_output = 3
|
|
use_parentheses = true
|
|
include_trailing_comma = true
|
|
|
|
[tool.codespell]
|
|
skip = '.git,*.pdf,*.svg,.tox'
|
|
ignore-regex = "\\\\[fnrstv]"
|
|
#
|
|
# ignore-words-list = ''
|
|
|
|
[tool.pytest.ini_options]
|
|
markers = [
|
|
"online",
|
|
]
|