-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
53 lines (43 loc) · 745 Bytes
/
.gitignore
File metadata and controls
53 lines (43 loc) · 745 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
# Ignore files and directories generated by your IDE or text editor
.idea/
.vscode/
*.sublime-project
*.sublime-workspace
# Ignore operating system files
.DS_Store
Thumbs.db
# Ignore log and temporary files
*.log
*.swp
*.tmp
# Ignore compiled code and binaries
*.class
*.jar
*.war
*.ear
*.pyc
*.pyo
__pycache__/
# Ignore environment-specific files
.env
# Ignore dependencies
/node_modules
/bower_components
/vendor
# Ignore build and distribution directories
/dist/
/build/
/out/
# Ignore configuration files that may contain sensitive information
*.config
*.conf
*.ini
# Ignore package-lock.json, yarn.lock, etc.
package-lock.json
yarn.lock
# Ignore Jekyll build directory
_site/
# Ignore miscellaneous files
.DS_Store
Thumbs.db
.env