forked from google/shaderc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlicense-checker.cfg
36 lines (32 loc) · 872 Bytes
/
license-checker.cfg
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
[
{
"licenses": [ "Apache-2.0" ],
"paths": [
{
"exclude": [
"**.md",
"**.png",
"**/README.asciidoc",
".*",
"AUTHORS",
"CHANGES",
"CONTRIBUTORS",
"DEPS",
"LICENSE",
"cmake/*.pc.in",
"libshaderc_util/testdata/dir/subdir/include_file.2",
"libshaderc_util/testdata/include_file.1",
"utils/git-sync-deps",
"third_party/**"
]
}
]
},
{
"licenses": [ "BSD-3-Clause" ],
"paths": [
{ "exclude": [ "**" ] },
{ "include": [ "utils/git-sync-deps" ] }
]
}
]