-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
45 lines (36 loc) · 848 Bytes
/
.gitignore
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
# Log and output files
*.log # Ignore log files
*.out # Ignore output files
# Specific file types used in the project
*.dck # Ignore .dck files
*.lst # Ignore .lst files
*.BAL # Ignore .BAL files
*.cfg # Ignore .cfg files
*.jpg # Ignore .jpg files
*.fig # Ignore .fig files
*.m # Ignore .m files
*.xlsx # Ignore .xlsx files
*.mat # Ignore .mat files
# Byte-compiled / optimized / DLL files
__pycache__/
*.pyc
*.pyo
*.pyd
# Caches and intermediate build data
.cache/
.doctrees/
build/
# Sphinx output directory
_build/
docs/__pycache__/
docs/_build/html/
# Environment variable files
.env
venv/
# VS Code settings
.vscode/
# OS-specific files
.DS_Store
Thumbs.db
# coverage
.coverage