From c4641d5fd9b51f8e298d7682aaa05b0f1035d2f4 Mon Sep 17 00:00:00 2001 From: Todd Dembrey <todd.dembrey@torchbox.com> Date: Fri, 5 Jan 2018 12:00:15 +0000 Subject: [PATCH] Prevent flake8 from checking node_modules --- setup.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 4ab5cc3de..78add7cc2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,5 +13,5 @@ ignore_errors = False disallow_untyped_defs = True [flake8] -ignore=E501,F405 -exclude=*/migrations/* +ignore = E501,F405 +exclude = migrations,node_modules -- GitLab