https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 868acc362f6ce8a8b3559fcb88ebb4c060321905 authored by Martin Cech on 21 January 2016, 17:24:27 UTC
Merge pull request #1555 from natefoo/release_15.10
Tip revision: 868acc3
setup.cfg
[flake8]
# These are exceptions allowed (encouraged?) by Galaxy style guidelines.
# 128 continuation line under-indented for visual indent
# 201 and 202 are spaces after ( and before )
# 203 whitespace before ':'
# 402 module level import not at top of file # TODO, we would like to improve this.
# 501 is line length
ignore = E128,E201,E202,E203,E501,E402
back to top