[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 14/24] python: move mypy.ini into setup.cfg
From: |
John Snow |
Subject: |
[PATCH v4 14/24] python: move mypy.ini into setup.cfg |
Date: |
Thu, 11 Feb 2021 13:58:46 -0500 |
mypy supports reading its configuration values from a central project
configuration file; do so.
Signed-off-by: John Snow <jsnow@redhat.com>
---
python/mypy.ini | 4 ----
python/setup.cfg | 5 +++++
2 files changed, 5 insertions(+), 4 deletions(-)
delete mode 100644 python/mypy.ini
diff --git a/python/mypy.ini b/python/mypy.ini
deleted file mode 100644
index 1a581c5f1ea..00000000000
--- a/python/mypy.ini
+++ /dev/null
@@ -1,4 +0,0 @@
-[mypy]
-strict = True
-python_version = 3.6
-warn_unused_configs = True
diff --git a/python/setup.cfg b/python/setup.cfg
index 9ecb2902006..0bd55c5e373 100644
--- a/python/setup.cfg
+++ b/python/setup.cfg
@@ -22,6 +22,11 @@ packages = find_namespace:
[flake8]
extend-ignore = E722 # Prefer pylint's bare-except checks to flake8's
+[mypy]
+strict = True
+python_version = 3.6
+warn_unused_configs = True
+
[pylint.messages control]
# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifiers separated by comma (,) or put this
--
2.29.2
[PATCH v4 06/24] python: add VERSION file, John Snow, 2021/02/11
[PATCH v4 17/24] python/qemu: add isort to pipenv, John Snow, 2021/02/11
[PATCH v4 09/24] python: add pylint import exceptions, John Snow, 2021/02/11
[PATCH v4 14/24] python: move mypy.ini into setup.cfg,
John Snow <=
[PATCH v4 10/24] python: move pylintrc into setup.cfg, John Snow, 2021/02/11
[PATCH v4 11/24] python: add pylint to pipenv, John Snow, 2021/02/11
[PATCH v4 07/24] python: add directory structure README.rst files, John Snow, 2021/02/11
[PATCH v4 12/24] python: move flake8 config to setup.cfg, John Snow, 2021/02/11
[PATCH v4 13/24] python: Add flake8 to pipenv, John Snow, 2021/02/11