mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-08 16:53:23 +00:00
31 lines
677 B
TOML
31 lines
677 B
TOML
[tool.codespell]
|
|
skip = '.git,*.pdf,*.svg,.tox'
|
|
ignore-regex = "\\\\[fnrstv]"
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = ["--strict-config", "--strict-markers"]
|
|
asyncio_default_fixture_loop_scope = "function"
|
|
markers = ["online"]
|
|
|
|
[tool.ruff]
|
|
line-length = 110
|
|
target-version = "py39"
|
|
|
|
[tool.ruff.lint]
|
|
select = [
|
|
"B", # flake8-bugbear
|
|
"C4", # flake8-comprehensions
|
|
"COM", # flake8-commas
|
|
"E", # pycodestyle error
|
|
"F", # pyflakes
|
|
"I", # isort
|
|
"ISC", # flake8-implicit-str-concat
|
|
"PIE", # flake8-pie
|
|
"RUF", # Ruff-specific rules
|
|
"UP", # pyupgrade
|
|
"W", # pycodestyle warning
|
|
]
|
|
|
|
[tool.ruff.lint.isort]
|
|
known-first-party = ["vcr"]
|