mirror of
https://github.com/arkorty/Expensso.git
synced 2026-03-17 16:41:43 +00:00
init
This commit is contained in:
117
.gitignore
vendored
Normal file
117
.gitignore
vendored
Normal file
@@ -0,0 +1,117 @@
|
||||
# ===== macOS =====
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
Icon?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
|
||||
# ===== Xcode =====
|
||||
build/
|
||||
*.pbxuser
|
||||
!default.pbxuser
|
||||
*.mode1v3
|
||||
!default.mode1v3
|
||||
*.mode2v3
|
||||
!default.mode2v3
|
||||
*.perspectivev3
|
||||
!default.perspectivev3
|
||||
xcuserdata
|
||||
*.xccheckout
|
||||
*.moved-aside
|
||||
DerivedData
|
||||
*.hmap
|
||||
*.ipa
|
||||
*.xcuserstate
|
||||
**/.xcode.env.local
|
||||
*.xcscmblueprint
|
||||
*.xcworkspace
|
||||
!*.xcodeproj/*.xcworkspace
|
||||
!default.xcworkspace
|
||||
*.origmeta
|
||||
|
||||
# ===== Android / IntelliJ =====
|
||||
build/
|
||||
.idea
|
||||
.gradle
|
||||
local.properties
|
||||
*.iml
|
||||
*.hprof
|
||||
.cxx/
|
||||
.kotlin/
|
||||
# Keystores — never commit release keystores
|
||||
*.keystore
|
||||
!debug.keystore
|
||||
# Signing credentials file (generated by CI or locally)
|
||||
android/keystore.properties
|
||||
|
||||
# ===== Node.js =====
|
||||
node_modules/
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
.npm/
|
||||
|
||||
# ===== Bun =====
|
||||
# bun.lockb is intentionally committed for reproducible installs
|
||||
|
||||
# ===== Environment / Secrets =====
|
||||
.env
|
||||
.env.*
|
||||
.env.local
|
||||
.env.production
|
||||
.env.staging
|
||||
!.env.example
|
||||
|
||||
# ===== TypeScript =====
|
||||
*.tsbuildinfo
|
||||
dist/
|
||||
out/
|
||||
|
||||
# ===== Fastlane =====
|
||||
**/fastlane/report.xml
|
||||
**/fastlane/Preview.html
|
||||
**/fastlane/screenshots
|
||||
**/fastlane/test_output
|
||||
|
||||
# ===== Bundle artifacts =====
|
||||
*.jsbundle
|
||||
|
||||
# ===== Ruby / CocoaPods =====
|
||||
**/Pods/
|
||||
/vendor/bundle/
|
||||
# Bundler local machine config (machine-specific gem paths, never commit)
|
||||
.bundle/
|
||||
|
||||
# ===== Metro =====
|
||||
.metro-health-check*
|
||||
|
||||
# ===== Testing =====
|
||||
/coverage
|
||||
|
||||
# ===== Yarn =====
|
||||
.yarn/*
|
||||
!.yarn/patches
|
||||
!.yarn/plugins
|
||||
!.yarn/releases
|
||||
!.yarn/sdks
|
||||
!.yarn/versions
|
||||
|
||||
# ===== Editor =====
|
||||
.vscode/*
|
||||
!.vscode/extensions.json
|
||||
!.vscode/settings.json
|
||||
!.vscode/launch.json
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# ===== Logs =====
|
||||
*.log
|
||||
logs/
|
||||
|
||||
# ===== OS thumbnails =====
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
Desktop.ini
|
||||
Reference in New Issue
Block a user