diff --git a/pyproject.toml b/pyproject.toml index c255c6d..670185a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,3 +29,15 @@ build-backend = "setuptools.build_meta" [tool.setuptools] packages = ["src"] + +[tool.ruff] +line-length = 100 +target-version = "py314" + +[tool.ruff.lint] +select = ["E", "F", "I", "UP", "B", "SIM"] +ignore = [] + +[tool.ruff.format] +quote-style = "double" +indent-style = "space"