From d34fdd688dd51cf7f0a524dfb722fb5eb509835f Mon Sep 17 00:00:00 2001 From: Alex Lowe Date: Mon, 25 Sep 2023 11:48:08 -0400 Subject: [PATCH] chore(lint): add new typing dependencies and fix pyright issues (#181) --- pyproject.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f242875..438cb09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,6 +59,9 @@ lint = [ types = [ "mypy[reports]==1.5.1", "pyright==1.1.327", + "types-Pygments", + "types-colorama", + "types-setuptools", ] docs = [ "furo==2023.9.10", @@ -132,7 +135,9 @@ exclude_also = [ pythonVersion = "3.8" pythonPlatform = "Linux" ignore = [ - "docs/*" + "build/*", + "docs/*", + "craft_cli/_version.py", ] [tool.mypy]