From a5736d244fbb075870e6d81b29a2f8730e6c7574 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon-Martin=20Schr=C3=B6der?= Date: Tue, 16 Jun 2020 20:36:19 +0200 Subject: [PATCH] Configure isort (#2136) * Configure isort * Fix whitespace * Line length, make THIRDPARTY the default --- setup.cfg | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.cfg b/setup.cfg index d30036c698..90317ec78a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -61,3 +61,8 @@ convention = pep257 # D202: Ignore a blank line after docstring (collision with Python Black in decorators) add-ignore = D104,D107,D202 max-line-length = 120 + +[tool:isort] +known_first_party = pytorch_lightning,tests +default_section=THIRDPARTY +line_length=120