summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-05 00:19:21 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-05 15:08:27 +0200
commitd5858f6b83eb59999c8b9f5566a119ea6e8638e5 (patch)
tree960d5f013e1a1a12eb57d2d3e94f4233260de054
parent14841441f2669230aa0af9e652c6a4433ec1d560 (diff)
downloadpylint-git-d5858f6b83eb59999c8b9f5566a119ea6e8638e5.tar.gz
Remove .isort.cfg in favor of setup.cfg
-rw-r--r--.isort.cfg7
-rw-r--r--setup.cfg8
2 files changed, 8 insertions, 7 deletions
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