mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
667ee80ef6
Former-commit-id: 6f65784f8b0588351b1b89329bfaa59081630f50
19 lines
309 B
Markdown
19 lines
309 B
Markdown
### 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
|
|
}
|
|
|
|
``` |