generated from LontriTech/template-basic
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
80 lines (62 loc) · 1018 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
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
# More on Git Ignore: https://git-scm.com/docs/gitignore
# Logs and temp files
*.log
*.tmp
*.lock
# OS files
.DS_Store
Thumbs.db
# Bash history file
.bash_history
# Backup files created by Bash
*~
# Bash execution output files
*.out
*.bak
*.swp
# GitHub Actions
.github/workflows/*.log
.github/actions/*.log
# GitHub Actions cache
.github/actions/cache
# VS Code workspace settings
.vscode/
.vscode/settings.json
.vscode/tasks.json
.vscode/launch.json
.vscode/extensions.json
# VS Code extensions directories
.vscode-test/
.vscode-extensions/
# node modules
node_modules/
# environment vars
.env
.env.local
.env.production
.env.test
# Compiled code or temporary files
*.pyc
*.class
*.o
# Build output and distribution directories
/dist/
/bin/
/build/
# Lock files
package-lock.json
yarn.lock
pipfile.lock
# JetBrains IDEs
.idea/
*.iml
# Sublime project settings
*.sublime-workspace
*.sublime-project
# Vim temporary files
*.swp
*.swo
# Emacs backup files
*~
# Shellcheck temporary files
*.shellcheck