Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ Coding Guidelines
information, please read here:
https://github.com/torvalds/linux/blob/master/Documentation/process/coding-style.rst

- Exception: Always use braces for all control statements even for a single
statement. For example::

if (!success) {
return;
}

- Avoid trailing spaces. To view trailing spaces before making a
commit, use "git diff" on your changes. If colors are enabled for
git in the command prompt, it will show you any whitespace issues
Expand Down