-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
112 lines (97 loc) · 1.53 KB
/
.gitignore
File metadata and controls
112 lines (97 loc) · 1.53 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# OpenLane
runs/
results/
# Python (cocotb)
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual environments
venv/
env/
ENV/
env.bak/
venv.bak/
# IDE and Editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# Temporary files
*.tmp
*.temp
*.bak
*.backup
*.orig
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Backup files
*.bak
*.backup
*.old
*.orig
*.save
# Compressed files
*.zip
*.tar.gz
*.rar
*.7z
# Configuration files with sensitive data
*.key
*.pem
*.p12
*.pfx
config.ini
secrets.json
.env
.env.local
.env.production
# Vyges AI context backup and hash files
.vyges-ai-context.json.backup.*
.vyges-ai-context.sha256
# Analog design intermediate files (following Efabless recommendations)
*.ext # Magic extraction files
*.raw # SPICE raw files
*.sp # SPICE files (if large)
*.log # Tool log files
# Layout intermediate files
*.mag # Magic database files
*.gds # GDS files (if large)
*.lef # LEF files (if large)
# Simulation results (large files)
simulation/results/ # Large simulation outputs
simulation/waveforms/ # Waveform files
# Macros directory (should be separate repositories)
analog/macros/ # Symbolic links to other projects
# Analog tool temporary files
*.tmp
*.temp
*.bak
*.backup
*.orig