diff options
author | David Tardon <dtardon@redhat.com> | 2013-12-07 21:14:20 +0100 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-12-07 22:38:56 +0100 |
commit | 191fe41ee330492dee54a71e27a2d92ad5231dda (patch) | |
tree | effce415f7d56515caedd20cb35e49cb8e51337e | |
parent | 4017d9d4b7946985428fe3e69b3cfbca6ee223e0 (diff) |
add astyle options file
-rw-r--r-- | HACKING | 8 | ||||
-rw-r--r-- | astyle.options | 11 |
2 files changed, 19 insertions, 0 deletions
@@ -0,0 +1,8 @@ += Coding style = + +This project uses mostly the same file naming and coding style like +librevenge and the rest of Fridrich's libraries. Please run + + astyle --options=astyle.options \*.cpp \*.h + +before committing. diff --git a/astyle.options b/astyle.options new file mode 100644 index 0000000..9d46215 --- /dev/null +++ b/astyle.options @@ -0,0 +1,11 @@ +# formatting options +style=allman +indent=spaces=2 +align-pointer=name +break-closing-brackets +pad-header +unpad-paren + +# processing options +recursive +suffix=none |