mirror of
https://github.com/multica-ai/multica.git
synced 2026-06-17 03:38:32 +02:00
The `!data/**` negation that rescues apps/mobile/data/ from the root .gitignore's `data/` rule was inadvertently pulling .DS_Store back in too — Finder metadata kept showing up in git status. Restate .DS_Store after the negation so last-match-wins re-ignores it.
34 lines
916 B
Plaintext
34 lines
916 B
Plaintext
node_modules/
|
|
.expo/
|
|
dist/
|
|
web-build/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Local env files only. `.env.staging` is committed — the override that
|
|
# rescues it from the repo-root `.env*` ignore rule lives in the root
|
|
# .gitignore (`!apps/mobile/.env.staging`).
|
|
.env*.local
|
|
|
|
# Native (Expo prebuild output)
|
|
ios/
|
|
android/
|
|
|
|
# Override the root .gitignore "data/" rule (intended for backend runtime
|
|
# dirs). apps/mobile/data/ is source — TanStack Query queries, mutations,
|
|
# stores, ApiClient — and MUST be tracked.
|
|
!data/
|
|
!data/**
|
|
|
|
# Re-ignore macOS metadata that the broader `!data/**` rule above would
|
|
# otherwise pull back in. The `.DS_Store` line at the top of this file is
|
|
# overridden by the negation, so we restate it here in last-match-wins
|
|
# position.
|
|
data/**/.DS_Store
|
|
|
|
# @generated expo-cli sync-2b81b286409207a5da26e14c78851eb30d8ccbdb
|
|
# The following patterns were generated by expo-cli
|
|
|
|
expo-env.d.ts
|
|
# @end expo-cli |