chore: Add security and testing patterns to .gitignore
- Add CLAVES Y CERTIFICADOS section (*.pem, *.key, etc.) - Add TESTING Y COVERAGE section - Add .turbo/ Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
923e3d52b2
commit
0ff45f5d8a
19
.gitignore
vendored
19
.gitignore
vendored
@ -25,6 +25,18 @@ out/
|
|||||||
.env.*.local
|
.env.*.local
|
||||||
!.env.example
|
!.env.example
|
||||||
|
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# CLAVES Y CERTIFICADOS
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
*.pem
|
||||||
|
*.key
|
||||||
|
*.p8
|
||||||
|
*.p12
|
||||||
|
*.pfx
|
||||||
|
*.crt
|
||||||
|
certificates/
|
||||||
|
keys/
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# LOGS
|
# LOGS
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
@ -49,9 +61,16 @@ Thumbs.db
|
|||||||
*.swo
|
*.swo
|
||||||
*~
|
*~
|
||||||
|
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
# TESTING Y COVERAGE
|
||||||
|
# -----------------------------------------------------------------------------
|
||||||
|
coverage/
|
||||||
|
.nyc_output/
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# TEMPORALES
|
# TEMPORALES
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
tmp/
|
tmp/
|
||||||
temp/
|
temp/
|
||||||
.cache/
|
.cache/
|
||||||
|
.turbo/
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user