Skip to content

Commit c17cbe4

Browse files
committed
Update .gitignore and pyproject
1 parent e820355 commit c17cbe4

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

.gitignore

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
# Python
12
**/__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
8+
# Distribution / packaging
29
*.zip
10+
*.egg-info/
11+
dist/
12+
build/
13+
14+
# Testing
15+
.pytest_cache/
16+
17+
# IDEs
18+
.vscode/
19+
.idea/
20+
.zed/
21+
*.swp
22+
*.swo
23+
*~
24+
.DS_Store
25+
26+
# QGIS
327
*.db
28+
29+
# Virtual environments
30+
venv/
31+
.venv/
32+
33+
# Temporary files
34+
*.log
35+
*.tmp

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
[tool.pyright]
22
extraPaths = [".."] # include project folder
33
# venv = ".venv"
4+
reportUnknownVariableType = "none"
5+
reportUnknownParameterType = "none"
6+
reportUnknownMemberType = "none"
7+
reportMissingTypeStubs = false
8+
reportMissingParameterType = false

0 commit comments

Comments
 (0)