diff --git a/pyproject.toml b/pyproject.toml index 01622d8..620ad7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,3 +55,7 @@ python_files = ["test_*.py"] python_classes = ["Test*"] python_functions = ["test_*"] addopts = "-v --cov=src --cov-report=term-missing" + +[tool.ruff.lint] +select = ["E", "F", "W"] +ignore = ["E501", "E722", "F401", "F841"]