From: deztructor Date: Wed, 18 Nov 2009 09:32:30 +0000 (+0000) Subject: Script to unify code formatting according to "ansi" style X-Git-Url: http://git.maemo.org/git/?p=qtrapids;a=commitdiff_plain;h=6c325f6d191739f115b2df64b7b83949e355e8d6 Script to unify code formatting according to "ansi" style To avoid differences in commits on the base of different indentation style preferences. Script uses astyle utility and should be run before any commit. git-svn-id: file:///svnroot/qtrapids/trunk@30 42ac0dd5-4c8c-4c71-bb3e-ecdfe252ffda --- diff --git a/scripts/format_code.sh b/scripts/format_code.sh new file mode 100644 index 0000000..60ad045 --- /dev/null +++ b/scripts/format_code.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +find ../src \( -name '*.cpp' -and -not -name 'moc_*' -or -name '*.h' -or -name '*.hpp' \) -exec astyle --style=ansi --suffix=none {} \; + + + +