From d5858f6b83eb59999c8b9f5566a119ea6e8638e5 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Mon, 5 Apr 2021 00:19:21 +0200 Subject: Remove .isort.cfg in favor of 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 4f3d4c822..000000000 --- a/.isort.cfg +++ /dev/null @@ -1,7 +0,0 @@ -[settings] -multi_line_output=3 -line_length=88 -known_third_party=astroid, sphinx, isort, pytest, mccabe, six, toml -include_trailing_comma=True -skip_glob=tests/functional/**,tests/input/**,tests/extensions/data/**,tests/regrtest_data/**,tests/data/**,astroid/**,venv/** -src_paths=pylint diff --git a/setup.cfg b/setup.cfg index d8865bae2..80bec789a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -66,3 +66,11 @@ addopts=-m "not acceptance" markers = acceptance: benchmark: Baseline of pylint performance, if this regress something serious happened + +[isort] +multi_line_output=3 +line_length=88 +known_third_party=astroid, sphinx, isort, pytest, mccabe, six, toml +include_trailing_comma=True +skip_glob=tests/functional/**,tests/input/**,tests/extensions/data/**,tests/regrtest_data/**,tests/data/**,astroid/**,venv/** +src_paths=pylint -- cgit v1.2.1