From 1f75264e96d35a49e4a9f462ad444270c67fba7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nielson=20Jann=C3=A9?= Date: Fri, 14 Mar 2025 22:18:05 +0100 Subject: [PATCH] Add ruff linting configuration --- pyproject.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 4ee065a..2601904 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,3 +28,12 @@ dependencies = [ [tool.setuptools] packages = ["."] exclude = ["data"] + +[tool.ruff] +line-length = 120 + +[tool.ruff.format] +quote-style = "double" +skip-magic-trailing-comma = true +line-ending = "auto" +docstring-code-format = false