We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 277c745 commit 101fc04Copy full SHA for 101fc04
2 files changed
.changeset/quiet-news-spend.md
@@ -0,0 +1,5 @@
1
+---
2
+'dotenv-diff': patch
3
4
+
5
+made suspicious keys more loose
packages/cli/src/core/security/secretDetectors.ts
@@ -19,7 +19,7 @@ export type SecretFinding = {
19
20
// Regular expressions for detecting suspicious keys and provider patterns
21
export const SUSPICIOUS_KEYS =
22
- /\b(pass(word)?|secret|token|apikey|api_key|key|auth|bearer|private|client_secret|access[_-]?token)\b/i;
+ /\b(pass(word)?|secret|token|apikey|api_key|client_secret|access[_-]?token)\b/i;
23
24
// Regular expressions for detecting provider patterns
25
export const PROVIDER_PATTERNS: RegExp[] = [
0 commit comments