From be1fad60832535f73c0ebab08982b88f624e7430 Mon Sep 17 00:00:00 2001 From: logikonline Date: Wed, 4 Mar 2026 02:25:13 -0500 Subject: [PATCH] chore(ci): add gitsecrets configuration and ignore file Initialize GitSecrets addon configuration with project analysis metadata. Add .gitsecrets-ignore file marking password-assignment detection in BuyMeACoffeeExtensions.cs as false positive. --- .gitsecrets-ignore | 14 ++++++++++++++ .gitsecretsconfig | 12 ++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .gitsecrets-ignore create mode 100644 .gitsecretsconfig diff --git a/.gitsecrets-ignore b/.gitsecrets-ignore new file mode 100644 index 0000000..8016118 --- /dev/null +++ b/.gitsecrets-ignore @@ -0,0 +1,14 @@ +# GitSecrets Ignore File +# This file tracks false positives identified by AI evaluation or manually marked. +# Each line is a JSON object with the following fields: +# - contentHash: SHA256 hash prefix of the secret content +# - patternId: The pattern that detected this secret +# - filePath: Relative path where the secret was found +# - reason: Why this was marked as a false positive +# - confidence: AI confidence level (if from AI evaluation) +# - addedAt: Timestamp when this entry was added +# +# You can safely commit this file to share false positive markers with your team. +# To remove an entry, simply delete the corresponding line. + +{"contentHash":"57ca47aa82486958","patternId":"password-assignment","filePath":"..\\..\\..\\AppData\\Local\\GitCaddy\\app-4.7.1\\BuyMeCofee.Maui\\BuyMeACoffeeExtensions.cs","reason":"Manually marked as false positive","addedAt":1772602630533} diff --git a/.gitsecretsconfig b/.gitsecretsconfig new file mode 100644 index 0000000..7fa8710 --- /dev/null +++ b/.gitsecretsconfig @@ -0,0 +1,12 @@ +{ + "version": 1, + "analyzedAt": 1772602627117, + "project": { + "type": "unknown" + }, + "vaultSdk": { + "installed": false, + "usageLocations": [] + }, + "recommendedApproach": "unknown" +} \ No newline at end of file