From d5d2e9167c452ac900189170c85d4ed4694d3fab Mon Sep 17 00:00:00 2001 From: Arona Jones Date: Thu, 28 Jan 2021 02:10:36 +0000 Subject: [PATCH] Exclude node_modules from codestyle --- .github/workflows/django.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml index d4bb2528..d48de342 100644 --- a/.github/workflows/django.yml +++ b/.github/workflows/django.yml @@ -45,7 +45,7 @@ jobs: python manage.py collectstatic --noinput - name: Basic Checks run: | - pycodestyle . --exclude=migrations,importer* + pycodestyle . --exclude=migrations,node_modules python manage.py check python manage.py makemigrations --check --dry-run test: