Add node_modules to .gitignore and Pylint's ignore list (#4089)

This makes it easier to use Pyright locally.
This commit is contained in:
correctmost 2026-01-06 19:54:54 -05:00 committed by GitHub
parent bb13139339
commit ef3369b1c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View File

@ -39,4 +39,5 @@ requirements.txt
/.gitconfig
/actions-runner
/cmd_output.txt
node_modules/
uv.lock

View File

@ -140,6 +140,7 @@ testpaths = ["tests"]
ignore-paths = [
"^build/",
"^docs/",
"^node_modules/",
]
persistent = false
py-version = "3.12"