mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
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
|
||
|
}
|
||
|
|
||
|
```
|