From f6c735616a616f5ea54a802fcb2b69cf515a2bd0 Mon Sep 17 00:00:00 2001 From: Peter Newman Date: Mon, 26 Feb 2024 22:08:05 +0000 Subject: [PATCH] Ignore more minified files that might contain spelling false positives --- scripts/spelling.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/spelling.sh b/scripts/spelling.sh index bcc82af8a..c20c9c2c3 100755 --- a/scripts/spelling.sh +++ b/scripts/spelling.sh @@ -70,11 +70,14 @@ SPELLINGBLACKLIST=$(cat <<-BLACKLIST -wholename "./olad/www/new/js/app.min.js" -or \ -wholename "./olad/www/new/js/app.min.js.map" -or \ -wholename "./olad/www/new/libs/angular/js/angular.min.js" -or \ + -wholename "./olad/www/new/libs/bootstrap/js/bootstrap.min.js" -or \ + -wholename "./olad/www/new/libs/jquery/js/jquery.min.js" -or \ -wholename "./olad/www/new/libs/marked/js/marked.min.js" -or \ -wholename "./olad/www/ola.js" -or \ -wholename "./plugins/artnet/messages/ArtNetConfigMessages.pb.*" -or \ -wholename "./tools/ola_trigger/config.tab.*" -or \ - -wholename "./tools/ola_trigger/lex.yy.cpp" + -wholename "./tools/ola_trigger/lex.yy.cpp" -or \ + -wholename "./tools/rdm/static/jquery-1.7.2.min.js" BLACKLIST )