From 273265f50e2809dfa52894fdf791657039bbb9a7 Mon Sep 17 00:00:00 2001 From: David Manthey Date: Thu, 13 Aug 2026 10:38:02 -0400 Subject: [PATCH] Better ignore node_modules in linting --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index b056f66b..39a5fafe 100644 --- a/tox.ini +++ b/tox.ini @@ -23,7 +23,7 @@ deps = yamlfix commands = flake8 {posargs:.} - yamlfix -c pyproject.toml --exclude ./client/node_modules/**/* client docs .github imagedephi stubs tests --check + yamlfix -c pyproject.toml --exclude **/node_modules/**/* client docs .github imagedephi stubs tests --check [testenv:format] package = skip @@ -34,7 +34,7 @@ deps = commands = isort {posargs:.} black {posargs:.} - yamlfix -c pyproject.toml --exclude ./client/node_modules/**/* client docs .github imagedephi stubs tests + yamlfix -c pyproject.toml --exclude **/node_modules/**/* client docs .github imagedephi stubs tests [testenv:type] # Editable ensures dependencies are installed, but full packaging isn't necessary