1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/dist/tools/vera++/scripts/rules/T010.tcl

12 lines
364 B
Tcl
Raw Normal View History

#!/usr/bin/tclsh
# Identifiers should not be composed of 'l' and 'O' characters only
foreach file [getSourceFileNames] {
foreach t [getTokens $file 1 0 -1 -1 {identifier}] {
set value [lindex $t 0]
if [regexp {^(l|O)+$} $value] {
report $file [lindex $t 1] "identifier should not be composed of only 'l' and 'O'"
}
}
}