##// END OF EJS Templates
Merge pull request 140 from SCIQLOP-Initialisation feature/VisualizationWidget...
Merge pull request 140 from SCIQLOP-Initialisation feature/VisualizationWidget Widget of the tab widget are now of type VisualizationTabWidget

File last commit:

r2:451739a45362
r89:626323acfce7 merge
Show More
IPSIS_S04_FILENAME.tcl
13 lines | 479 B | application/x-tcl | TclLexer
#!/usr/bin/tclsh
# Naming conventions for file names
set fileNameRegex [getParameter "filename-regex" {^[A-Z]\w*$}]
foreach fileName [getSourceFileNames] {
# Check file name
if {[regexp {(?:\\|/)?([^\\/]+?)\.(?:h|cpp)$} $fileName matchedExpr fileNameWithoutExt]} {
if {![regexp $fileNameRegex $fileNameWithoutExt]} {
report $fileName 1 "The file names should match the following regex: $fileNameRegex (found: $fileNameWithoutExt)"
}
}
}