From 66ae47d1002edca10faa464105b40da5da0d17b9 Mon Sep 17 00:00:00 2001 From: Ryan P Kilby Date: Wed, 7 Feb 2018 14:43:45 -0500 Subject: [PATCH] Move isort conf into 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..5f687f85b 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