From b982eac08070f227a0671609eb3665b49576c058 Mon Sep 17 00:00:00 2001 From: correctmost <134317971+correctmost@users.noreply.github.com> Date: Tue, 6 Jan 2026 17:21:10 -0500 Subject: [PATCH] Add node_modules to .gitignore and Pylint's ignore list This makes it easier to use Pyright locally. --- .gitignore | 1 + pyproject.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 9e30144f3b..376bdbd535 100644 --- a/.gitignore +++ b/.gitignore @@ -39,4 +39,5 @@ requirements.txt /.gitconfig /actions-runner /cmd_output.txt +node_modules/ uv.lock diff --git a/pyproject.toml b/pyproject.toml index 2a510fe0ea..f094430c1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -137,6 +137,7 @@ testpaths = ["tests"] ignore-paths = [ "^build/", "^docs/", + "^node_modules/", ] persistent = false py-version = "3.12"