With tags: "TODO,FIXME,BUG,DOCME,DEPRECATED", the word DEBUG is also reported. For example (from Gradle's gradlew.bat), line @if "%DEBUG%"=="" @echo off results in
github-actions bot commented on Apr 15
Markierungen im Code
▼ gradlew.bat
BUG
[ ] %"=="" @echo off Line: 17
Could you please match only complete words?
Or better yet, add a regex input as an alternative for tags (without any special meaning for commas, since regexes have their own or operator). So we could use something like tagRegex: "\b(TODO|FIXME|BUG|DOCME|DEPRECATED)\b".
Thanks!