We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e820355 commit c17cbe4Copy full SHA for c17cbe4
.gitignore
@@ -1,3 +1,35 @@
1
+# Python
2
**/__pycache__/
3
+*.py[cod]
4
+*$py.class
5
+*.so
6
+.Python
7
+
8
+# Distribution / packaging
9
*.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
27
*.db
28
29
+# Virtual environments
30
+venv/
31
+.venv/
32
33
+# Temporary files
34
+*.log
35
+*.tmp
pyproject.toml
@@ -1,3 +1,8 @@
[tool.pyright]
extraPaths = [".."] # include project folder
# venv = ".venv"
+reportUnknownVariableType = "none"
+reportUnknownParameterType = "none"
+reportUnknownMemberType = "none"
+reportMissingTypeStubs = false
+reportMissingParameterType = false
0 commit comments