https://github.com/galaxyproject/galaxy
Raw File
Tip revision: f49308317336cfa24c49d5c52b2544248b039628 authored by John Chilton on 15 October 2020, 16:29:22 UTC
Version 20.9.0 of test-api (tag galaxy-test-api-20.9.0).
Tip revision: f493083
setup.cfg
[wheel]
universal = 1

[flake8]
# These are exceptions allowed by Galaxy style guidelines.
# E128 continuation line under-indented for visual indent
# E203 whitespace before ':'
# E402 module level import not at top of file # TODO, we would like to improve this.
# E501 is line length
# E741 do not use variables named 'l', 'O' or 'I'
# W503 is line breaks before binary operators, which has been reversed in PEP 8.
# D** are docstring linting - which we mostly ignore except D302. (Hopefully we will solve more over time).
ignore = E128,E203,E501,E402,E741,W503,W504,D100,D101,D102,D103,D104,D105,D106,D107,D200,D201,D202,D204,D205,D206,D207,D208,D209,D210,D211,D300,D301,D400,D401,D402,D403,D412,D413
exclude = lib/galaxy/util/jstree.py
# For flake8-import-order
# https://github.com/PyCQA/flake8-import-order/blob/master/tests/test_cases/complete_smarkets.py
import-order-style = smarkets
application-import-names = galaxy,galaxy_test,tool_shed
back to top