-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
55 lines (46 loc) · 832 Bytes
/
Copy path.gitignore
File metadata and controls
55 lines (46 loc) · 832 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
# Build artifacts and intermediate files
dist/
**/obj/**
**/bin/**
**/.vs/**
# Python Compiled Files
# Ignore Python cache directories and bytecode files
__pycache__/
*.py[cod]
*$py.class
*.pyc
# Python Distribution & Build
# Ignore package distribution files and build artifacts
dist/
build/
*.egg-info/
*.eggs/
# Virtual Environments
# Ignore virtual environment folders (each dev has their own)
venv/
.venv/
venvs/
env/
# IDE & Editor Settings
# Ignore IDE-specific files and caches
.vscode/
.vs/
.idea/
# Operating System Files
# Ignore OS-generated files
.DS_Store
Thumbs.db
# Testing & Coverage
# Ignore test reports and coverage data
.pytest_cache/
.coverage
htmlcov/
TEST*.xml
tests_output/
# Log Files
# Ignore application and build logs
*.log
# Type Checking
# Ignore mypy type checking cache
.mypy_cache/
.cache