1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2024-10-30 11:54:01 -04:00

Reorder text

This commit is contained in:
Alex Kotov 2022-12-03 15:44:19 +04:00
parent b1f04c1499
commit 56a58a89c1
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08

View file

@ -25,6 +25,13 @@ The following statements are recommendations, but highly encouraged:
* Write tests * Write tests
* Keep lines less than 80 characters long for better experience on split screen * Keep lines less than 80 characters long for better experience on split screen
### Things to review periodically
* `git grep -i fixme`
* `git grep -i todo`
* `git grep -i cppcheck-suppress`
* `git grep -i rubocop:disable`
### Programming mistakes ### Programming mistakes
* Always check documentation, manuals and specifications * Always check documentation, manuals and specifications
@ -62,13 +69,6 @@ Avoid stupid errors with:
* Default case in switch statements * Default case in switch statements
* Braces (curly brackets) around code blocks * Braces (curly brackets) around code blocks
### Things to review periodically
* `git grep -i fixme`
* `git grep -i todo`
* `git grep -i cppcheck-suppress`
* `git grep -i rubocop:disable`
### Complicated topics ### Complicated topics
* [Assertions & \_\_attribute\_\_((nonnull))](doc/assert_and_nonnull.md) * [Assertions & \_\_attribute\_\_((nonnull))](doc/assert_and_nonnull.md)