devtools: ignore JSON files for SPDX check
authorStephen Hemminger <stephen@networkplumber.org>
Tue, 16 Mar 2021 21:00:25 +0000 (14:00 -0700)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 19 May 2021 09:01:19 +0000 (11:01 +0200)
The JSON file format does not support comments so there is no good
way to add SPDX license identifier.  This solves false positives
that arrive from the use of JSON in crypto dev tests.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
devtools/check-spdx-tag.sh

index 3f2912e..a606ef8 100755 (executable)
@@ -25,8 +25,8 @@ check_spdx() {
        ':^*/Kbuild' ':^*/README' \
        ':^license/' ':^config/' ':^buildtools/' \
        ':^*.cocci' ':^*.abignore' \
-       ':^*.map' ':^*.ini' ':^*.data' ':^*.cfg' ':^*.txt' \
-       ':^*.svg' ':^*.png'\
+       ':^*.map' ':^*.ini' ':^*.data' ':^*.json' ':^*.cfg' ':^*.txt' \
+       ':^*.svg' ':^*.png' \
        > $tmpfile
 
     errors=$(wc -l < $tmpfile)