STYLE: trailing whitespace, doxygen, error messages from fileOperation

This commit is contained in:
Mark Olesen
2017-12-13 17:56:34 +01:00
parent 0af97856f1
commit bc8420e14f
33 changed files with 65 additions and 102 deletions

View File

@ -1,15 +0,0 @@
Misc. tools for finding and/or repairing common documentation problems
See the comments in the scripts.
1. find-suspiciousTags
2. fix-Class
3. find-tinyDescription
4. find-placeholderDescription
5. find-retagged
Misc Tools
1. find-templateInComments
2. find-its
3. find-junkFiles
4. find-longlines

View File

@ -1,16 +0,0 @@
#!/bin/bash
#------------------------------------------------------------------------------
# Script
# find-trailingspace
#
# Description
# Search for files with trailing whitesapce
#
#------------------------------------------------------------------------------
cd $WM_PROJECT_DIR || exit 1
tab=$'\t'
git grep -c -E "[ $tab]+"'$' -- $@
#------------------------------------------------------------------------------