[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 11/15] python: move mypy.ini into setup.cfg
From: |
John Snow |
Subject: |
[PATCH v3 11/15] python: move mypy.ini into setup.cfg |
Date: |
Tue, 20 Oct 2020 15:35:51 -0400 |
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 1a581c5f1e..0000000000
--- 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 87506a4f10..206e5a91dc 100755
--- a/python/setup.cfg
+++ b/python/setup.cfg
@@ -21,6 +21,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.26.2
- [PATCH v3 04/15] python: add directory structure README.rst files, (continued)
- [PATCH v3 04/15] python: add directory structure README.rst files, John Snow, 2020/10/20
- [PATCH v3 05/15] python: Add pipenv support, John Snow, 2020/10/20
- [PATCH v3 06/15] python: add pylint import exceptions, John Snow, 2020/10/20
- [PATCH v3 07/15] python: move pylintrc into setup.cfg, John Snow, 2020/10/20
- [PATCH v3 11/15] python: move mypy.ini into setup.cfg,
John Snow <=
- [PATCH v3 09/15] python: move flake8 config to setup.cfg, John Snow, 2020/10/20
- [PATCH v3 12/15] python: add mypy to pipenv, John Snow, 2020/10/20
- [PATCH v3 08/15] python: add pylint to pipenv, John Snow, 2020/10/20
- [PATCH v3 10/15] python: Add flake8 to pipenv, John Snow, 2020/10/20