-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
60 lines (45 loc) · 760 Bytes
/
.gitignore
File metadata and controls
60 lines (45 loc) · 760 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
# Ignore macOS system files
.DS_Store
# Ignore node modules
node_modules/
# Ignore logs
*.log
# Ignore the build directory
/dist
# Ignore IDE specific files
.idea/
.vscode/
*.sw*
# Ignore environment files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Ignore package-lock files
package-lock.json
yarn.lock
# Ignore coverage directory
/coverage
# Ignore temp files
*.tmp
*.temp
# Ignore OS generated files
ehthumbs.db
Thumbs.db
# Ignore files related to API keys
.env*.local
# Ignore compiled Python files
*.pyc
__pycache__/
# Ignore compiled Java classes
*.class
# Ignore build output directories
/build
/out
# Ignore dependency directories
/vendor
/bower_components
# Ignore personal TODO files
TODO.md
todo.txt