aboutsummaryrefslogtreecommitdiff
path: root/license-checker.cfg
blob: 7afc70daf57f24f2cdae1506b3b1fb38a3701c7a (plain)
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" ] }
        ]
    }
]