diff --git a/.github/workflows/eslint_disable_check.py b/.github/workflows/eslint_disable_check.py index 135b3c19c2..78351d88d7 100644 --- a/.github/workflows/eslint_disable_check.py +++ b/.github/workflows/eslint_disable_check.py @@ -78,6 +78,8 @@ def check_eslint(directories): ) sys.exit(1) for root, _, files in os.walk(directory): + if "node_modules" in root: + continue for file_name in files: if ( file_name.endswith(".tsx")