-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy path.secretlintrc.json
More file actions
87 lines (87 loc) · 2.26 KB
/
Copy path.secretlintrc.json
File metadata and controls
87 lines (87 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"rules": [
{
"id": "@secretlint/secretlint-rule-preset-recommend",
"rules": [
{
"id": "@secretlint/secretlint-rule-aws",
"options": {
"allows": [
"AKIAIOSFODNN7EXAMPLE",
"wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"
]
},
"allowMessageIds": ["AWSAccountID"]
},
{
"id": "@secretlint/secretlint-rule-github",
"options": {
"allows": [
"ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"ghs_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"gho_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
]
}
},
{
"id": "@secretlint/secretlint-rule-privatekey"
},
{
"id": "@secretlint/secretlint-rule-basicauth"
},
{
"id": "@secretlint/secretlint-rule-slack",
"options": {
"allows": [
"xoxb-ABCDEFGHIJKLM-1234567890-abcdefghij",
"xoxp-ABCDEFGHIJKLM-1234567890-abcdefghij"
]
}
},
{
"id": "@secretlint/secretlint-rule-sendgrid"
},
{
"id": "@secretlint/secretlint-rule-npm"
},
{
"id": "@secretlint/secretlint-rule-openai",
"options": {
"allows": [
"sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
]
}
},
{
"id": "@secretlint/secretlint-rule-anthropic",
"options": {
"allows": [
"sk-ant-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
]
}
},
{
"id": "@secretlint/secretlint-rule-gcp"
},
{
"id": "@secretlint/secretlint-rule-shopify"
},
{
"id": "@secretlint/secretlint-rule-linear"
},
{
"id": "@secretlint/secretlint-rule-1password"
},
{
"id": "@secretlint/secretlint-rule-database-connection-string",
"options": {
"allows": [
"mysql://user:password@localhost:3306/database",
"postgresql://user:password@localhost:5432/database"
]
}
}
]
}
]
}