Skip to content

Commit 5a7a7db

Browse files
committed
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.
1 parent b481744 commit 5a7a7db

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

license-checker.cfg

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,13 @@
2121
"glslang/OSDependent/Web/glslang.*.js",
2222

2323
"glslang/MachineIndependent/glslang_tab.cpp",
24-
"glslang/MachineIndependent/glslang_tab.cpp.h"
24+
"glslang/MachineIndependent/glslang_tab.cpp.h",
25+
26+
"**.md",
27+
"build/**",
28+
"out/**",
29+
"Test/**",
30+
"External/spirv-tools/**"
2531
]
2632
}
2733
],

0 commit comments

Comments
 (0)