From 1ba600cef5ce78c70b1a768cae9fac1a2576b2f9 Mon Sep 17 00:00:00 2001 From: Simon Conseil Date: Thu, 4 Oct 2018 22:34:07 +0200 Subject: [PATCH] Ignore tags, and ignore flake8 E731 --- .gitignore | 3 ++- setup.cfg | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 640382e..a9d47db 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ *.pyc *_flymake .coverage +.DS_Store .pytest_cache/ .ropeproject/ .tox/ @@ -13,4 +14,4 @@ dist/ docs/_build htmlcov/ output/ -.DS_Store +tags diff --git a/setup.cfg b/setup.cfg index fa6e018..3c16108 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,3 +6,6 @@ ignore = .coveragerc tests readthedocs.yml + +[flake8] +ignore = E731