Remove redundant `node_modules/` entries from sub-directory .gitignore files. The root `.gitignore` already has `**/node_modules/` which covers all nested directories, making these per-package entries unnecessary. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
49 lines
625 B
Text
49 lines
625 B
Text
# Node.js specific
|
|
npm-debug.log
|
|
yarn-error.log
|
|
package-lock.json
|
|
yarn.lock
|
|
|
|
# Environment variables
|
|
.env
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# OS-specific files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE-specific files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage/
|
|
|
|
# Ignore build output
|
|
dist/
|
|
build/
|
|
.graphclient/
|
|
|
|
# Ignore any other secret keys or sensitive information
|
|
secret-keys.json
|
|
|
|
# Ignore local environment configuration
|
|
.env.local
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Ignore temporary files
|
|
tmp/
|
|
temp/
|
|
|
|
# Ignore .next directory if using Next.js
|
|
.next/
|