-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
83 lines (67 loc) · 1.01 KB
/
.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
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
# Ignore operating system files
.DS_Store
Thumbs.db
# Ignore Python bytecode files
__pycache__/
*.py[cod]
# Ignore Jupyter Notebook checkpoints
.ipynb_checkpoints
# Ignore virtual environments
env/
venv/
ENV/
.VENV/
.venv/
# Ignore IDE and editor settings
.vscode/
.idea/
*.sublime-workspace
*.sublime-project
# Ignore logs and databases
*.log
*.sqlite3
*.db
# Ignore package management files
node_modules/
package-lock.json
yarn.lock
# Ignore test coverage results
coverage/
*.cover
*.coverage
*.cov
.nyc_output/
# Ignore build artifacts
build/
dist/
*.egg-info/
*.manifest
*.spec
target/
# Ignore compiled source files
*.o
*.pyc
*.pyo
*.pyd
# Ignore environment variable files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Ignore personal files
*.swp
*.swo
# Ignore hidden files
.*.swp
# Include release builds in the repository
!release/
!release/*
# Make sure not to ignore icons
!icons/
!icons/**
# Ensure key project source files are not ignored
!src/
!src/**
!assets/
!assets/**