Skip to content

Commit

Permalink
[infra] ignore playground in lint/typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
pkelaita committed Nov 21, 2024
1 parent 2df9976 commit e198e69
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -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

Expand Down
10 changes: 9 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e198e69

Please sign in to comment.