From 2fffa456818d5be2909889bbbcdc44372d31427d Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Sat, 3 Jan 2026 12:53:59 +0200 Subject: [PATCH] style: prevent ruff reformatting Some IDEs and coding agents automatically apply `ruff format` if ruff is available. The code of this project doesn't conform to ruff formatting rules. --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 13571b0..bce8acd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -68,3 +68,10 @@ Homepage = "https://github.com/perrette/scribe" [project.scripts] scribe = "scribe.app:main" scribe-install = "scribe.install_desktop:main" + + +[tool.ruff] +force-exclude = true + +[tool.ruff.format] +exclude = ["**"]