diff --git a/CODING_STYLE.md b/CODING_STYLE.md new file mode 100644 index 00000000..e7b18aec --- /dev/null +++ b/CODING_STYLE.md @@ -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 +} + +``` \ No newline at end of file