Skip to content
This repository has been archived by the owner on May 6, 2021. It is now read-only.

Commit

Permalink
add codingstyle.md
Browse files Browse the repository at this point in the history
  • Loading branch information
brindosch committed May 26, 2016
1 parent 7e6f328 commit 6f65784
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions CODING_STYLE.md
Original file line number Diff line number Diff line change
@@ -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
}
```

0 comments on commit 6f65784

Please sign in to comment.