From d74b4c4deeb498bab385149a81764a51bc708e7d Mon Sep 17 00:00:00 2001 From: Jake <73198594+jaborsh@users.noreply.github.com> Date: Wed, 9 Apr 2025 14:31:02 -0600 Subject: [PATCH] Add exclusions and line-length for ruff lint support --- pyproject.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 44ad709be9..df920c912b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -170,3 +170,20 @@ omit = [ "*.pyc", "*.service", ] + +[tool.ruff] +exclude = [ + "/.eggs/", + "/.git/", + "/.hg/", + "/.mypy_cache/", + "/.tox/", + "/.venv/", + "/_build/", + "/buck-out/", + "/build/", + "/dist/", + "migrations", + "docs", +] +line-length = 100 \ No newline at end of file