From d5e2941c2cba40b68150a4a7164ef49c7da21d77 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Mon, 5 Aug 2024 11:19:22 +0200 Subject: [PATCH] chore: ignore node_modules for flake8 Explicitly ignore the locally downloaded nodejs modules when running flake8 (as flake8 does not use .gitignore); this way it is possible to run flake8 while developing and running tests. --- .flake8 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.flake8 b/.flake8 index 446dcb3..5f2b96b 100644 --- a/.flake8 +++ b/.flake8 @@ -17,3 +17,5 @@ extend-exclude = src/lib/, subscription-manager/, test/common/, + # node modules + node_modules/,