From 0ff45f5d8ab30cfeb6fd5195de8d2e5b8edb0922 Mon Sep 17 00:00:00 2001 From: Adrian Flores Cortes Date: Tue, 20 Jan 2026 07:54:23 -0600 Subject: [PATCH] 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 --- .gitignore | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.gitignore b/.gitignore index 6a9eed2..016f15f 100644 --- a/.gitignore +++ b/.gitignore @@ -25,6 +25,18 @@ out/ .env.*.local !.env.example +# ----------------------------------------------------------------------------- +# CLAVES Y CERTIFICADOS +# ----------------------------------------------------------------------------- +*.pem +*.key +*.p8 +*.p12 +*.pfx +*.crt +certificates/ +keys/ + # ----------------------------------------------------------------------------- # LOGS # ----------------------------------------------------------------------------- @@ -49,9 +61,16 @@ Thumbs.db *.swo *~ +# ----------------------------------------------------------------------------- +# TESTING Y COVERAGE +# ----------------------------------------------------------------------------- +coverage/ +.nyc_output/ + # ----------------------------------------------------------------------------- # TEMPORALES # ----------------------------------------------------------------------------- tmp/ temp/ .cache/ +.turbo/