summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorChristian Klinger2016-09-29 15:48:49 +0200
committerChristian Klinger2016-09-29 15:48:49 +0200
commit692748a07684cf6caf67fa736db853781c58842f (patch)
tree1c07df56f24df8179518049e1522375b20bf52b2 /README.md
parentastyle. (diff)
downloadpvs2-692748a07684cf6caf67fa736db853781c58842f.tar.gz
pvs2-692748a07684cf6caf67fa736db853781c58842f.tar.xz
pvs2-692748a07684cf6caf67fa736db853781c58842f.zip
added a pre-commit hook for astyle.
Diffstat (limited to 'README.md')
-rw-r--r--README.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/README.md b/README.md
index c1bba45..96ee734 100644
--- a/README.md
+++ b/README.md
@@ -82,3 +82,25 @@ something like "xscreensaver-command --lock" or similar.
### Network Setup
+
+
+# FOR CONTRIBUTORS
+
+## Code Style
+Please check the file `.astylerc` for details. We recommend to install a
+pre-commit hook to make sure that one only commit complying code. Such a hook
+can be found in scripts/astyle-check.sh
+
+Steps to install the hook:
+ # install `astyle`
+ apt-get install astyle
+
+ cd pvs2
+ cd .git/hooks
+ ln -s ../../scripts/astyle-check.sh pre-commit
+ chmod +x pre-commit
+
+If a staged file does not comply to our coding style, you can use
+ `astyle --options=./.astylerc <FILE>` to correct the style.
+
+