Skip to content

Commit e43c5b1

Browse files
committed
Update .gitignore and pyproject.toml configuration
- Modify .gitignore to include .coverage* pattern - Add Pyright configuration to pyproject.toml with include paths for src and tests
1 parent 537543d commit e43c5b1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.coverage
1+
.coverage*
22
.venv/
33
/dist/
44
__pycache__/

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,6 @@ ignore = [
8989
[tool.ruff.lint.per-file-ignores]
9090
"tests/*" = ["ANN", "ARG", "D", "FBT", "PLR", "RUF", "S", "SLF"]
9191
"src/xlviews/testing/*" = ["T201"]
92+
93+
[tool.pyright]
94+
include = ["src", "tests"]

0 commit comments

Comments
 (0)