scripts: Reformat with consistent section separators

This commit is contained in:
Henry Weller
2016-02-15 18:30:24 +00:00
parent 0196822968
commit 350d03246e
370 changed files with 399 additions and 401 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh
# -----------------------------------------------------------------------------
#------------------------------------------------------------------------------
# Script
# find-its
#
@ -8,10 +8,10 @@
# This contraction (== "it is") looks too much like "its" (possesive)
# and confuses non-native (and some native) English speakers.
#
# -----------------------------------------------------------------------------
#------------------------------------------------------------------------------
set -x
cd $WM_PROJECT_DIR || exit 1
git grep -e "it's"
#------------------------------------------------------------------ end-of-file
#------------------------------------------------------------------------------

View File

@ -1,12 +1,12 @@
#!/bin/bash
# -----------------------------------------------------------------------------
#------------------------------------------------------------------------------
# Script
# find-trailingspace
#
# Description
# Search for files with trailing whitesapce
#
# -----------------------------------------------------------------------------
#------------------------------------------------------------------------------
set -x
cd $WM_PROJECT_DIR || exit 1
@ -14,4 +14,4 @@ tab=$'\t'
git grep -c -E "[ $tab]+"'$' -- $@
#------------------------------------------------------------------ end-of-file
#------------------------------------------------------------------------------