From b50a41b89581005d8c79ed280774e2c3d2ee1c21 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Wed, 7 Feb 2018 20:15:22 +0100 Subject: [PATCH] isort: move config to setup.cfg --- .isort.cfg | 7 ------- setup.cfg | 8 ++++++++ 2 files changed, 8 insertions(+), 7 deletions(-) delete mode 100644 .isort.cfg diff --git a/.isort.cfg b/.isort.cfg deleted file mode 100644 index fd9c67a97..000000000 --- a/.isort.cfg +++ /dev/null @@ -1,7 +0,0 @@ -[settings] -skip=.tox -atomic=true -multi_line_output=5 -known_standard_library=types -known_third_party=pytest,_pytest,django -known_first_party=rest_framework diff --git a/setup.cfg b/setup.cfg index aa34f62b7..a665f95ce 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,3 +7,11 @@ license_file = LICENSE.md [flake8] ignore = E501 banned-modules = json = use from rest_framework.utils import json! + +[isort] +skip=.tox +atomic=true +multi_line_output=5 +known_standard_library=types +known_third_party=pytest,_pytest,django +known_first_party=rest_framework