-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ignore any key contains "secret" (#1156)
- Loading branch information
Showing
4 changed files
with
47 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
exports.keys = 'foo'; | ||
exports.proxy = true; | ||
exports.buffer = Buffer.from('test'); | ||
exports.buffer = Buffer.from('test'); | ||
|
||
exports.pass = 'this is pass'; | ||
exports.pwd = 'this is pwd'; | ||
exports.password = 'this is password'; | ||
exports.passwordNew = 'this is passwordNew'; | ||
exports.mysql = { | ||
passd: 'this is passd', | ||
passwd: 'this is passwd', | ||
secret: 'secret 123', | ||
secretNumber: 123, | ||
secretBoolean: true, | ||
masterKey: 'this is masterKey', | ||
accessKey: 'this is accessKey', | ||
accessId: 'this is accessId', | ||
consumerSecret: 'this is consumerSecret', | ||
someSecret: null, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters