comparison 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
comparison
equal deleted inserted replaced
206:5064e3a2e54a 207:b3b5ed34d180
1 [metadata] 1 [metadata]
2 license_file = LICENSE.txt 2 license_file = LICENSE.txt
3 3
4 [egg_info] 4 [egg_info]
5 tag_build = 5 tag_build =
6 tag_date = 0 6 tag_date = 0
7 tag_svn_revision = 0 7 tag_svn_revision = 0
8 8
9 [bdist_wheel] 9 [bdist_wheel]
10 universal = 1 10 universal = 1
11 11
12 [sdist] 12 [sdist]
13 formats = gztar 13 formats = gztar
14
15 [flake8]
16 per-file-ignores =
17 # Ignore "too many blank lines"
18 configmix/compat.py:E303