view vera/rules/L003.tcl @ 798:952021a03ace

doc: more doxygen improvements
author David Demelier <markand@malikania.fr>
date Mon, 12 Nov 2018 13:19:28 +0100
parents 6ec510722582
children
line wrap: on
line source

#!/usr/bin/tclsh
# No leading and no trailing empty lines

foreach f [getSourceFileNames] {
    set lineCount [getLineCount $f]
    if {$lineCount > 0} {
        set firstLine [getLine $f 1]
        if {[string trim $firstLine] == ""} {
            report $f 1 "leading empty line(s)"
        }

        set lastLine [getLine $f $lineCount]
        if {[string trim $lastLine] == ""} {
            report $f $lineCount "trailing empty line(s)"
        }
    }
}