From a61404492d4b38e76dc2381d518e6c2a96c7858b Mon Sep 17 00:00:00 2001 From: mccalluc Date: Tue, 21 Jan 2020 15:22:45 -0500 Subject: [PATCH] update lint config to reflect Matt prefs; see #21 --- setup.cfg | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 9f833ad..9d6074c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,4 @@ [flake8] +max-line-length = 100 ignore = - E501 - # Line length: Biggest offenders are tutorial files which may be removed? - # https://github.com/hubmapconsortium/airflow-dev/issues/22 + W503 # "line break before binary operator": Prefer operator at start of line so the context is clear.