-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathdeny.toml
More file actions
30 lines (29 loc) · 984 Bytes
/
deny.toml
File metadata and controls
30 lines (29 loc) · 984 Bytes
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
[licenses]
unused-allowed-license = "allow"
confidence-threshold = 0.95
allow = [
"Apache-2.0",
# This isn't explicitly called out as allowed, but I'm counting it as covered under Apache-2.0
"Apache-2.0 WITH LLVM-exception",
# We follow the CNCF list of allowed non-Apache-2.0 licenses. All allowed licenses are included to minimize the need to update this list in the future.
# https://github.com/cncf/foundation/blob/main/policies-guidance/allowed-third-party-license-policy.md#approved-licenses-for-allowlist
"0BSD",
"BSD-2-Clause",
"BSD-2-Clause-FreeBSD",
"BSD-3-Clause",
"MIT",
"MIT-0",
"ISC",
"OpenSSL",
"OpenSSL-standalone",
"PSF-2.0",
"Python-2.0",
"Python-2.0.1",
"PostgreSQL",
"SSLeay-standalone",
"UPL-1.0",
"X11",
"Zlib",
# TODO #2107: This license is not in the CNCF allow-list, but was approved for use by AWS and is the license for a current dependency.
"Unicode-3.0",
]