mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-08 16:53:23 +00:00
29 lines
583 B
TOML
29 lines
583 B
TOML
[tool.codespell]
|
|
skip = '.git,*.pdf,*.svg,.tox'
|
|
ignore-regex = "\\\\[fnrstv]"
|
|
#
|
|
# ignore-words-list = ''
|
|
|
|
[tool.pytest.ini_options]
|
|
markers = ["online"]
|
|
|
|
[tool.ruff]
|
|
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
|
|
]
|
|
line-length = 110
|
|
target-version = "py38"
|
|
|
|
[tool.ruff.isort]
|
|
known-first-party = ["vcr"]
|