From 8a7ad00a230222a488ff849279ba49a752cdb302 Mon Sep 17 00:00:00 2001 From: Matt Prahl Date: Oct 22 2018 13:07:05 +0000 Subject: Merge #1051 `Move flake8 config into flake8 section in tox.ini` --- diff --git a/tox.ini b/tox.ini index fd7c780..15f201b 100644 --- a/tox.ini +++ b/tox.ini @@ -7,7 +7,14 @@ envlist = flake8, py27, py3 [flake8] +ignore = E731 max-line-length = 100 +exclude = + ./.tox + ./.git + ./module_build_service/migrations + ./build + ./.env [testenv] usedevelop = true @@ -30,7 +37,7 @@ commands = basepython = python2 skip_install = true deps = flake8 -commands = flake8 --ignore E731 --exclude ./.tox,./.git,./module_build_service/migrations,./build +commands = flake8 [testenv:bandit] basepython = python2