mirror of
https://github.com/github/gitignore.git
synced 2026-05-16 07:52:01 -04:00
fix: avoid using trailing comments as gitignore doesn't support them
Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
@@ -11,15 +11,22 @@
|
||||
node_modules/
|
||||
|
||||
# Expo local state and caches
|
||||
.expo/ # runtime state (Metro bundler, dev-client data, tunnels)
|
||||
.expo-shared/ # shared project settings (app.json edits, etc.)
|
||||
# runtime state (Metro bundler, dev-client data, tunnels)
|
||||
.expo/
|
||||
# shared project settings (app.json edits, etc.)
|
||||
.expo-shared/
|
||||
|
||||
# Metro bundler caches/logs
|
||||
*.expo # generic Expo temp files
|
||||
*.tunnel # Expo DevTools tunnels
|
||||
*.cache # Metro cache folder
|
||||
*.tmp # temp files created during bundling
|
||||
*.log # build or Metro logs
|
||||
# generic Expo temp files
|
||||
*.expo
|
||||
# Expo DevTools tunnels
|
||||
*.tunnel
|
||||
# Metro cache folder
|
||||
*.cache
|
||||
# temp files created during bundling
|
||||
*.tmp
|
||||
# build or Metro logs
|
||||
*.log
|
||||
|
||||
# Environment variables
|
||||
.env
|
||||
|
||||
Reference in New Issue
Block a user