From e198e6919236822880338f4e58f57b08bfa4f363 Mon Sep 17 00:00:00 2001 From: Pierce Kelaita Date: Thu, 21 Nov 2024 11:25:25 -0800 Subject: [PATCH] [infra] ignore playground in lint/typecheck --- .flake8 | 2 +- pyproject.toml | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.flake8 b/.flake8 index d5ea48a..1d9a538 100644 --- a/.flake8 +++ b/.flake8 @@ -1,5 +1,5 @@ [flake8] -exclude = .git,__pycache__,docs/source/conf.py,old,build,dist,venv,integration_tests,scripts +exclude = .git,__pycache__,docs/source/conf.py,old,build,dist,venv,integration_tests,scripts,playground max-line-length = 120 max-complexity = 10 diff --git a/pyproject.toml b/pyproject.toml index 58f0e31..9e5d7bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,15 @@ packages.find.namespaces = false [tool.mypy] -exclude = ["build", "dist", "venv", "integration_tests", "scripts", "tests"] +exclude = [ + "build", + "dist", + "venv", + "integration_tests", + "scripts", + "tests", + "playground", +] ignore_missing_imports = true explicit_package_bases = true