afv-library/.gitignore
k-j-kim 7018d49e26
fix: correct .gitignore to track sample lib/ folders @W-21361802@ (#119)
fix: use glob pattern in .gitignore to track sample lib/ folders

The lib/ negation rules had incorrect webapp folder names
(appreactsampleb2e/appreactsampleb2x instead of
propertymanagementapp/propertyrentalapp), causing the sample lib/
directories to remain git-ignored. Replaced with a simpler
!samples/**/lib/ glob that is resilient to future name changes.

Made-with: Cursor
2026-03-27 10:57:57 +05:30

248 lines
2.8 KiB
Plaintext

# Salesforce & SFDX
.sfdx/
.sf/
.localdevserver/
.salesforce/
deploy/
.vscode/settings.json
.vscode/extensions.json
# Salesforce DX
**/*.dup
.sfdx/
.localdevserver/
# LWC Jest
**/__tests__/**
**/.eslintrc.json
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
# Diagnostic reports
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Coverage directories
coverage/
*.lcov
.nyc_output
lib-cov
# Dependency directories
node_modules/
jspm_packages/
bower_components/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional stylelint cache
.stylelintcache
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn
.yarn-integrity
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
*.manifest
*.spec
pip-log.txt
pip-delete-this-directory.txt
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/
*.mo
*.pot
*.pyc
.python-version
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# React sample templates: track internal `src/lib` utility modules
# These rules override the global `lib/` ignore in the Python section above.
!samples/**/lib/
!samples/**/lib/**
# IDEs and Editors
.vscode/
!.vscode/extensions.json
!.vscode/launch.json
!.vscode/settings.json
!.vscode/tasks.json
.idea/
*.iml
*.ipr
*.iws
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
*.sublime-project
.history/
.ionide/
# OS Files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
Desktop.ini
$RECYCLE.BIN/
# Temporary files
*.tmp
*.temp
*.swp
*.swo
*~
.#*
\#*#
*.bak
*.orig
# Environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Package managers
yarn.lock
pnpm-lock.yaml
# Backup files
*.backup
*.back
*-backup.*
# Compiled output
*.class
*.dll
*.exe
*.o
*.so
# Archives
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
# User-specific files
scratch.txt
notes.txt
TODO.txt
.cursor/
.copilot/
# Test output
test-results/
playwright-report/
test-output/
# Build artifacts
out/
target/
bin/
obj/
# Sync script manifest (not created by script)
skills/.synced-template-skills.json
# Local configuration
config.local.*
*.local.json
local-settings.json
# Secrets and credentials
*.pem
*.key
*.cert
*.crt
secrets.json
credentials.json
service-account.json
# Deployment artifacts
deploy-*.log
deployment_log.txt
validation_results.json