Skip to content

Commit f3be9d8

Browse files
feat: .gitignore 개선
1 parent bd54d3e commit f3be9d8

File tree

1 file changed

+84
-15
lines changed

1 file changed

+84
-15
lines changed

.gitignore

Lines changed: 84 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,99 @@
11
# Dependencies
2-
/node_modules
2+
node_modules/
3+
.yarn/
4+
.pnp.*
35

46
# Production
5-
/build
7+
/build/
8+
/dist/
69

710
# Generated files
8-
.docusaurus
9-
.cache-loader
10-
11-
# Misc
12-
.DS_Store
13-
.env.local
14-
.env.development.local
15-
.env.test.local
16-
.env.production.local
11+
.docusaurus/
12+
.cache-loader/
13+
.cache/
1714

1815
# Logs
16+
logs/
17+
*.log
1918
npm-debug.log*
2019
yarn-debug.log*
2120
yarn-error.log*
21+
lerna-debug.log*
22+
.pnpm-debug.log*
23+
24+
# Environment variables
25+
.env
26+
.env.local
27+
.env.development.local
28+
.env.test.local
29+
.env.production.local
2230

2331
# IDE specific files
24-
.idea
25-
.vscode
32+
# VSCode
33+
.vscode/
34+
.history/
35+
*.code-workspace
36+
37+
# JetBrains IDEs
38+
.idea/
39+
.idea_modules/
40+
*.iml
41+
*.iws
42+
*.ipr
43+
out/
44+
45+
# Sublime Text
46+
*.sublime-workspace
47+
*.sublime-project
48+
49+
# Vim
2650
*.swp
2751
*.swo
2852

29-
# Local Netlify folder
30-
.netlify
53+
# OS specific files
54+
# macOS
55+
.DS_Store
56+
.DS_Store?
57+
.AppleDouble
58+
.LSOverride
59+
Icon
60+
._*
61+
.Spotlight-V100
62+
.Trashes
63+
64+
# Windows
65+
Thumbs.db
66+
Thumbs.db:encryptable
67+
ehthumbs.db
68+
ehthumbs_vista.db
69+
*.stackdump
70+
[Dd]esktop.ini
71+
$RECYCLE.BIN/
72+
73+
# Temporary files
74+
tmp/
75+
temp/
76+
77+
# TypeScript
78+
tsconfig.tsbuildinfo
79+
80+
# Coverage directory used by tools like istanbul
81+
coverage/
82+
*.lcov
83+
84+
# Docusaurus specific
85+
.docusaurus
86+
87+
# Deployment services
88+
.netlify/
89+
.vercel/
90+
.now/
91+
92+
# Optional npm cache directory
93+
.npm
94+
95+
# Optional eslint cache
96+
.eslintcache
97+
98+
# Optional stylelint cache
99+
.stylelintcache

0 commit comments

Comments
 (0)