From 7dde2a1caf18cfd411b399df5ca2e7b7272ac5c6 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Fri, 29 May 2020 15:56:33 -0400 Subject: [PATCH] tox.ini: make `flake8` ignore `templates.py` `templates.py` is only a bunch of strings; no application code there. Signed-off-by: Philippe Proulx --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 5430856..735654b 100644 --- a/tox.ini +++ b/tox.ini @@ -24,7 +24,7 @@ commands = flake8 barectf show-source = True ignore = E123,E125,E501 builtins = _ -exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build +exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,templates.py [testenv:pylint-errors] deps = pylint >= 1.6 -- 2.34.1