From 1ab47c2fe97fd24b40b5f5c84a3e463b48ddcddd Mon Sep 17 00:00:00 2001 From: Ryan Jung Date: Fri, 10 Jan 2025 11:25:37 -0700 Subject: [PATCH] Move 'exclude' section to ruff.toml --- ruff.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ruff.toml b/ruff.toml index 941bf5c..b20afb0 100644 --- a/ruff.toml +++ b/ruff.toml @@ -1,5 +1,17 @@ line-length = 120 +# Exclude a variety of commonly ignored directories. +exclude = [ + ".eggs", + ".git", + ".ruff_cache", + ".venv", + "__pycache__", + "__pypackages__", + "venv", +] + + [format] quote-style = "single"