[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 16/24] python: move .isort.cfg into setup.cfg
From: |
John Snow |
Subject: |
[PATCH v4 16/24] python: move .isort.cfg into setup.cfg |
Date: |
Thu, 11 Feb 2021 13:58:48 -0500 |
Signed-off-by: John Snow <jsnow@redhat.com>
---
python/.isort.cfg | 7 -------
python/setup.cfg | 8 ++++++++
2 files changed, 8 insertions(+), 7 deletions(-)
delete mode 100644 python/.isort.cfg
diff --git a/python/.isort.cfg b/python/.isort.cfg
deleted file mode 100644
index 6d0fd6cc0d3..00000000000
--- a/python/.isort.cfg
+++ /dev/null
@@ -1,7 +0,0 @@
-[settings]
-force_grid_wrap=4
-force_sort_within_sections=True
-include_trailing_comma=True
-line_length=72
-lines_after_imports=2
-multi_line_output=3
\ No newline at end of file
diff --git a/python/setup.cfg b/python/setup.cfg
index f919e95f95b..bc90d52b9ca 100644
--- a/python/setup.cfg
+++ b/python/setup.cfg
@@ -56,3 +56,11 @@ good-names=i,
[pylint.similarities]
# Ignore imports when computing similarities.
ignore-imports=yes
+
+[isort]
+force_grid_wrap=4
+force_sort_within_sections=True
+include_trailing_comma=True
+line_length=72
+lines_after_imports=2
+multi_line_output=3
--
2.29.2
- Re: [PATCH v4 18/24] python/qemu: add qemu package itself to pipenv, (continued)
- [PATCH v4 23/24] python: add .gitignore, John Snow, 2021/02/11
- [PATCH v4 22/24] python: add Makefile for some common tasks, John Snow, 2021/02/11
- [PATCH v4 21/24] python: add excluded dirs to flake8 config, John Snow, 2021/02/11
- [PATCH v4 24/24] gitlab: add python linters to CI, John Snow, 2021/02/11
- [PATCH v4 15/24] python: add mypy to pipenv, John Snow, 2021/02/11
- [PATCH v4 20/24] python: add pytest and tests, John Snow, 2021/02/11
- [PATCH v4 19/24] python: add devel package requirements to setuptools, John Snow, 2021/02/11
- [PATCH v4 16/24] python: move .isort.cfg into setup.cfg,
John Snow <=
- Re: [PATCH v4 00/24] python: create installable package, Cleber Rosa, 2021/02/11