1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

Fix ruff configuration

This commit is contained in:
Jair Henrique
2024-10-12 23:16:48 -03:00
parent ce27c63685
commit c8d99a99ec

View File

@@ -16,6 +16,10 @@ filterwarnings = [
]
[tool.ruff]
line-length = 110
target-version = "py39"
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"C4", # flake8-comprehensions
@@ -29,8 +33,6 @@ select = [
"UP", # pyupgrade
"W", # pycodestyle warning
]
line-length = 110
target-version = "py39"
[tool.ruff.isort]
[tool.ruff.lint.isort]
known-first-party = ["vcr"]