add codingstyle.md

Former-commit-id: 6f65784f8b
This commit is contained in:
brindosch 2016-05-26 23:42:23 +02:00
parent 13b08d5df1
commit 667ee80ef6
1 changed files with 19 additions and 0 deletions

19
CODING_STYLE.md Normal file
View File

@ -0,0 +1,19 @@
### Please use the following code style/guidelines
- use QT wherever it's possible (except there is a good reason)
- use unix line endings (not windows)
- indent your code with TABs instead of spaces
- follow this rule for curly brackets
```
bad:
if (conditon) {
code
}
good:
if (condition)
{
code
}
```