From 50a2faf5a259893bebe5838868a83bb1c914b625 Mon Sep 17 00:00:00 2001 From: tiftran Date: Tue, 3 Mar 2020 13:59:02 -0800 Subject: [PATCH] add exclusions for venv for make check and code_format --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2d6edc72..9634b1e7 100644 --- a/Makefile +++ b/Makefile @@ -34,11 +34,11 @@ load_data: migrate update_actions load_initial_data lint: SHELL:=/bin/bash -O extglob lint: - docker-compose run app therapist run --disable-git ./!(node_modules|assets|docs) + docker-compose run app therapist run --disable-git ./!(node_modules|assets|docs|venv) code_format: SHELL:=/bin/bash -O extglob code_format: - docker-compose run app therapist run --fix --disable-git ./!(node_modules|assets|docs) + docker-compose run app therapist run --fix --disable-git ./!(node_modules|assets|docs|venv) check: check_migrations lint test kill: