summaryrefslogtreecommitdiff
path: root/scripts/codingstyle.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/codingstyle.sh')
-rw-r--r--scripts/codingstyle.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/codingstyle.sh b/scripts/codingstyle.sh
new file mode 100644
index 00000000..ce24a5a1
--- /dev/null
+++ b/scripts/codingstyle.sh
@@ -0,0 +1,24 @@
+#!/bin/sh
+#
+# apply kdelibs coding style to all c, cpp and header files in src directory
+# requirements: installed astyle
+#
+# The coding style is defined in http://techbase.kde.org/Policies/Kdelibs_Coding_Style
+#
+# In rekonq we use some little different rules..
+
+{
+cd ..
+cd src
+
+astyle \
+--indent=spaces=4 \
+--brackets=break \
+--indent-labels \
+--pad=oper \
+--unpad=paren \
+--one-line=keep-statements \
+--convert-tabs \
+--indent-preprocessor \
+`find -type f -name '*.cpp'` `find -type f -name '*.h'`
+} \ No newline at end of file