diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 34 | 
1 files changed, 24 insertions, 10 deletions
diff --git a/pyproject.toml b/pyproject.toml index 82586143d..dc6520391 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,23 +33,16 @@ pydantic = { version = "1.10.7", extras = ["dotenv"]}  [tool.poetry.dev-dependencies]  coverage = "7.2.3" -flake8 = "6.0.0" -flake8-annotations = "3.0.0" -flake8-bugbear = "23.3.23" -flake8-docstrings = "1.7.0" -flake8-string-format = "0.3.0" -flake8-tidy-imports = "4.8.0" -flake8-todo = "0.7" -flake8-isort = "6.0.0" -pep8-naming = "0.13.3" +httpx = "0.24.0" +isort = "5.12.0"  pre-commit = "3.2.2"  pip-licenses = "4.1.0"  pytest = "7.3.0"  pytest-cov = "4.0.0"  pytest-subtests = "0.10.0"  pytest-xdist = "3.2.1" +ruff = "0.0.260"  taskipy = "1.10.4" -httpx = "0.24.0"  [build-system] @@ -83,6 +76,27 @@ combine_as_imports = true  line_length = 120  atomic = true +[tool.ruff] +target-version = "py311" +extend-exclude = [".cache"] +ignore = [ +    "ANN002", "ANN003", "ANN101", "ANN102", "ANN204", "ANN206", "ANN401", +    "B904", +    "C401", "C408", +    "D100", "D104", "D105", "D107", "D203", "D212", "D214", "D215", "D301", +    "D400", "D401", "D402", "D404", "D405", "D406", "D407", "D408", "D409", "D410", "D411", "D412", "D413", "D414", "D416", "D417", +    "E731", +    "RET504", +    "RUF005", +    "S311", +    "SIM102", "SIM108", +] +line-length = 120 +select = ["ANN", "B", "C4", "D", "DTZ", "E", "F", "ISC", "INT", "N", "PGH", "PIE", "Q", "RET", "RSE", "RUF", "S", "SIM", "T20", "TID", "UP", "W"] + +[tool.ruff.per-file-ignores] +"tests/*" = ["ANN", "D"] +  [tool.pytest.ini_options]  # We don't use nose style tests so disable them in pytest.  # This stops pytest from running functions named `setup` in test files.  |