summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorLoic Bistuer <loic.bistuer@sixmedia.com>2013-12-08 20:16:45 +0700
committerLoic Bistuer <loic.bistuer@sixmedia.com>2013-12-08 20:16:45 +0700
commit27dc7908d59385950b0f3ff1aa4bf0cddd787a2a (patch)
tree6846569814eb24438f2aaf61a5819f9e1f56ca8b /setup.cfg
parent65faa84de3fd3f42e938301574cccdec1578657d (diff)
Made flake8 ignore the .git directory.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index 393d0dc094..d777622729 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -3,7 +3,7 @@ doc_files = docs extras AUTHORS INSTALL LICENSE README.rst
install-script = scripts/rpm-install.sh
[flake8]
-exclude=./django/utils/dictconfig.py,./django/contrib/comments/*,./django/utils/unittest.py,./django/utils/lru_cache.py,./tests/comment_tests/*,./django/test/_doctest.py,./django/utils/six.py,./django/conf/app_template/*
+exclude=.git,./django/utils/dictconfig.py,./django/contrib/comments/*,./django/utils/unittest.py,./django/utils/lru_cache.py,./tests/comment_tests/*,./django/test/_doctest.py,./django/utils/six.py,./django/conf/app_template/*
ignore=E124,E127,E128,E501,W601
[metadata]