diff options
| -rw-r--r-- | pyproject.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index e6645c8..fbe6946 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,6 +41,8 @@ dependencies = [ [project.optional-dependencies] test = [ "pytest", + "mypy", + "ruff", ] [project.entry-points."certbot.plugins"] @@ -51,3 +53,10 @@ Homepage = "https://git.zhineng.li/certbot_dns_alibabacloud" [tool.setuptools.packages.find] where = ["src"] + +[tool.ruff] +line-length = 100 + +[tool.mypy] +ignore_missing_imports = true +strict_equality = true |
