diff setup.cfg @ 207:b3b5ed34d180

Handle most flake8 errors and warnings. NOTE: E265 "block comment should start with '# ' ist not yet handled. We would need to adjust our Python style.
author Franz Glasner <fzglas.hg@dom66.de>
date Sun, 05 May 2019 18:29:47 +0200
parents de56425063cf
children e85d1eddf539
line wrap: on
line diff
--- a/setup.cfg	Sun May 05 16:53:13 2019 +0200
+++ b/setup.cfg	Sun May 05 18:29:47 2019 +0200
@@ -2,7 +2,7 @@
 license_file = LICENSE.txt
 
 [egg_info]
-tag_build = 
+tag_build =
 tag_date = 0
 tag_svn_revision = 0
 
@@ -11,3 +11,8 @@
 
 [sdist]
 formats = gztar
+
+[flake8]
+per-file-ignores =
+    # Ignore "too many blank lines"
+    configmix/compat.py:E303