summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Snow2021-05-27 23:17:05 +0200
committerJohn Snow2021-06-01 22:21:21 +0200
commite941c844e4446b6200ac102ef285544c406a2fcd (patch)
tree2d06f21fd701c6cd6c3c06f97bd689abd611af4f
parentpython: Add flake8 to pipenv (diff)
downloadqemu-e941c844e4446b6200ac102ef285544c406a2fcd.tar.gz
qemu-e941c844e4446b6200ac102ef285544c406a2fcd.tar.xz
qemu-e941c844e4446b6200ac102ef285544c406a2fcd.zip
python: move mypy.ini into setup.cfg
mypy supports reading its configuration values from a central project configuration file; do so. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Cleber Rosa <crosa@redhat.com> Message-id: 20210527211715.394144-22-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
-rw-r--r--python/mypy.ini4
-rw-r--r--python/setup.cfg5
2 files changed, 5 insertions, 4 deletions
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 9aeab2bb0d..bd88b44ad8 100644
--- a/python/setup.cfg
+++ b/python/setup.cfg
@@ -27,6 +27,11 @@ extend-ignore = E722 # Prefer pylint's bare-except checks to flake8's
exclude = __pycache__,
.venv,
+[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