From 0ce1b0fbd7c2d29ca8992348e816c6825f0bd243 Mon Sep 17 00:00:00 2001 From: thegamecracks <61257169+thegamecracks@users.noreply.github.com> Date: Sun, 7 Apr 2024 16:12:47 -0400 Subject: [PATCH] ci: ignore build directory when running pyright --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index a6550b0..261a3f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,14 @@ tests = [ "pytest>=7.4.3", ] +[tool.pyright] +exclude = [ + "**/node_modules", + "**/__pycache__", + "**/.*", + "build", +] + [tool.setuptools_scm] [project.urls]