Skip to content

Commit fb282ca

Browse files
yigitkonurclaude
andcommitted
Streamline .gitignore to essential exclusions only
- Remove unnecessary entries for non-existent tools/frameworks - Keep only: node_modules, dist, .env, .DS_Store, .eslintcache, temp files - Add *.tsbuildinfo to ignore build artifacts - Maintain clean, focused exclusion list 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent fa14674 commit fb282ca

File tree

1 file changed

+2
-56
lines changed

1 file changed

+2
-56
lines changed

.gitignore

Lines changed: 2 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,76 +1,22 @@
1-
# =================================================================
2-
# .gitignore for MCP STDIO Server
3-
# =================================================================
4-
51
# Dependencies
62
node_modules/
7-
npm-debug.log*
8-
yarn-debug.log*
9-
yarn-error.log*
10-
pnpm-debug.log*
113

124
# Build output
135
dist/
14-
build/
156
*.tsbuildinfo
16-
.tsbuildinfo
177

188
# Environment variables
199
.env
2010
.env.*
2111
!.env.example
2212

23-
# Logs
24-
logs/
25-
*.log
26-
27-
# Runtime data
28-
pids/
29-
*.pid
30-
*.seed
31-
*.pid.lock
32-
33-
# Coverage reports
34-
coverage/
35-
*.lcov
36-
.nyc_output
37-
38-
# Cache directories
39-
.npm
40-
.yarn
41-
.pnpm
42-
.cache
43-
.parcel-cache
44-
.eslintcache
45-
46-
# IDE and editor files
47-
.vscode/
48-
.idea/
49-
*.swp
50-
*.swo
51-
*~
52-
.vscode-test
53-
5413
# OS generated files
5514
.DS_Store
56-
.DS_Store?
5715
._*
58-
.Spotlight-V100
59-
.Trashes
60-
ehthumbs.db
61-
Thumbs.db
6216

63-
# Testing
64-
test-results/
65-
playwright-report/
17+
# Cache directories
18+
.eslintcache
6619

6720
# Temporary files
6821
*.tmp
6922
*.temp
70-
71-
# Package manager lock files (keeping npm lock file)
72-
# yarn.lock
73-
# pnpm-lock.yaml
74-
75-
# Docker
76-
.dockerignore

0 commit comments

Comments
 (0)