From 0e04a1bb9ab8d742b24a31da8ee95b2b26680fc5 Mon Sep 17 00:00:00 2001 From: Eemeli Aro Date: Sun, 10 Mar 2024 12:43:34 +0200 Subject: [PATCH] Move mypy config to top-level pyproject.toml --- fluent.runtime/setup.cfg | 3 --- fluent.syntax/setup.cfg | 3 --- pyproject.toml | 3 +++ 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/fluent.runtime/setup.cfg b/fluent.runtime/setup.cfg index e26910c6..b721e30e 100644 --- a/fluent.runtime/setup.cfg +++ b/fluent.runtime/setup.cfg @@ -3,6 +3,3 @@ version=0.4.0 [bdist_wheel] universal=1 - -[mypy] -strict = True diff --git a/fluent.syntax/setup.cfg b/fluent.syntax/setup.cfg index 7109a307..2ee441e6 100644 --- a/fluent.syntax/setup.cfg +++ b/fluent.syntax/setup.cfg @@ -3,6 +3,3 @@ version=0.19.0 [bdist_wheel] universal=1 - -[mypy] -strict = True diff --git a/pyproject.toml b/pyproject.toml index 3f3a00ee..7156c53b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,6 @@ [tool.isort] line_length = 120 skip_glob = ".tox" + +[tool.mypy] +strict = true