Browse Source
- Set DEFAULT_BRANCH to current branch to fix 'master not found' error - Use fetch-depth: 0 so GITHUB_BEFORE_SHA can be resolved - Set update_etl.sh executable bit (BASH_EXEC) - Fix .codespellrc tab indentation (EDITORCONFIG) - Add .gitleaks.toml allowlist for GA4 Measurement Protocol API secret (GITLEAKS) - Fix .markdown-lint.yml: disable MD030/MD013/MD033/MD041/MD051 to match existing repo style (MARKDOWN)pull/4900/head
5 changed files with 21 additions and 15 deletions
@ -1,11 +1,11 @@ |
|||
[codespell] |
|||
# Skip data tables that contain many short server identifiers (e.g. "fof", "nd") |
|||
skip = |
|||
lgsm/data/*.csv, |
|||
package-lock.json, |
|||
*/package-lock.json, |
|||
node_modules, |
|||
*/node_modules/* |
|||
lgsm/data/*.csv, |
|||
package-lock.json, |
|||
*/package-lock.json, |
|||
node_modules, |
|||
*/node_modules/* |
|||
|
|||
# Ignore common identifiers/acronyms and extensions used throughout LinuxGSM |
|||
ignore-words-list = distroname,fof,nd,sav,parms,ThirdParty |
|||
|
|||
@ -0,0 +1,9 @@ |
|||
title = "LinuxGSM Gitleaks Config" |
|||
|
|||
[allowlist] |
|||
description = "Known false positives" |
|||
regexes = [ |
|||
# Google Analytics 4 Measurement Protocol API secret - not a sensitive credential, |
|||
# it is intentionally embedded in client-side code and is safe to be public. |
|||
'''apisecret="[A-Za-z0-9_\-]+"''', |
|||
] |
|||
Loading…
Reference in new issue