Browse Source

Remove flake8-import-order which conflicts with isort

Basti Tee 3 years ago
parent
commit
a1274b6901
2 changed files with 2 additions and 1 deletions
  1. 0 1
      Pipfile
  2. 2 0
      setup.cfg

+ 0 - 1
Pipfile

@@ -9,7 +9,6 @@ flake8 = "*" # Base-linter module
 flake8-quotes = "*" # flake8-extension to lint bad quoting
 flake8-docstrings = "*" # flake8-ext for strict docstring linting
 flake8-builtins = "*" # flake8-ext to check python builtins used as vars etc.
-flake8-import-order = "*" # flake8-ext to cleanup imports
 flake8-blind-except = "*" # flake8-ext to catch blind exception catches
 flake8-use-fstring = "*" # flake8-ext to enforce f-strings
 pep8-naming = "*" # flake8-ext to enforce pep8 naming conventions

+ 2 - 0
setup.cfg

@@ -22,7 +22,9 @@ format-greedy = 2
 
 [tool:isort]
 # See https://github.com/timothycrosley/isort/wiki/isort-Settings
+# Default values for demonstration purposes
 sections = FUTURE,STDLIB,FIRSTPARTY,THIRDPARTY,LOCALFOLDER
+lines_between_sections = 1
 
 # -----------------------------------------------------------------------------
 # TEST CONFIGURATION