-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
63 lines (63 loc) · 938 Bytes
/
.gitignore
File metadata and controls
63 lines (63 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
.venv/
venv/
.tmp/
src/*.egg-info/
**/__pycache__/
.python-version
pyrightconfig.json
# Ignore build artifacts
build/
dist/
*.egg-info/
# Ignore virtual environments
myenv/
venv/
.env/
.env
.env.*
# Ignore Python cache files
__pycache__/
*.py[cod]
*.pyo
*.pyd
# Ignore system-specific files
.DS_Store
Thumbs.db
# Ignore IDE-specific files
.idea/
.vscode/
tasks.json
*.sublime-workspace
*.sublime-project
# Ignore pip environment files
pip-log.txt
pip-delete-this-directory.txt
# Ignore coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
# Ignore test result files
*.log
# Ignore Jupyter Notebook checkpoints
.ipynb_checkpoints/
# Ignore temporary files
*.swp
*.bak
*.tmp
# Ignore pytest cache
.pytest_cache/
# Ignore mypy type checker cache
.mypy_cache/
# Ignore pyright type checker cache
.pyright/
# Ignore specific file patterns
*.pot
*.mo
# Ignore helpers file
publish.sh
test_report.json