Add new rules for update of license-checker

`license-checker` will be updated to support `**` based wildcards. As part of this, `license-checker` will now traverse into subdirectories that would previously be excluded when the parent directory is excluded.

This change adds new rules that work with both the old version and new, to ease migration.
This commit is contained in:
Ben Clayton 2020-07-17 11:58:54 +01:00
parent b481744aea
commit 5a7a7dbd1e

View File

@ -21,7 +21,13 @@
"glslang/OSDependent/Web/glslang.*.js",
"glslang/MachineIndependent/glslang_tab.cpp",
"glslang/MachineIndependent/glslang_tab.cpp.h"
"glslang/MachineIndependent/glslang_tab.cpp.h",
"**.md",
"build/**",
"out/**",
"Test/**",
"External/spirv-tools/**"
]
}
],