-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
42 lines (30 loc) · 791 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
# Ignore node_modules directory
node_modules/
# Ignore log files
*.log
# Ignore environment-specific configuration files
.env
# Ignore npm debug logs
npm-debug.log*
# Ignore yarn error logs
yarn-error.log
# Ignore local configuration files
config/local.js
# Ignore macOS system files
.DS_Store
# Ignore editor-specific project files
.vscode/
.idea/
# Ignore built files and output directories
/dist/
/out/
/build/
# Ignore package-lock.json for projects using npm (but keep it for projects using yarn)
package-lock.json
# Ignore .env.local files, which can contain sensitive information
.env.local
# Ignore .env.development.local and .env.test.local, which can also contain sensitive information
.env.development.local
.env.test.local
# Ignore Jest coverage directory
/coverage/