summaryrefslogtreecommitdiffstats
path: root/eng/coding-conventions.rst
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-11-06 09:21:31 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-11-11 07:43:38 +0100
commit64323c3827a948523e28612a2281b4f43da0aaa4 (patch)
tree91b445e4e058a11ba10a622a2e034004b3b92550 /eng/coding-conventions.rst
parenteng: Clarify "Coding Conventions" introduction (diff)
downloadrtems-docs-64323c3827a948523e28612a2281b4f43da0aaa4.tar.bz2
eng: Move code formatting rules into one section
Clarify the 80 character limit. Change the line continuation indent level.
Diffstat (limited to 'eng/coding-conventions.rst')
-rw-r--r--eng/coding-conventions.rst26
1 files changed, 0 insertions, 26 deletions
diff --git a/eng/coding-conventions.rst b/eng/coding-conventions.rst
index e34cd74..668a917 100644
--- a/eng/coding-conventions.rst
+++ b/eng/coding-conventions.rst
@@ -131,32 +131,6 @@ Language and Compiler
* Do not use the register keyword. It is deprecated since C++14.
-Formatting
------------
-
-* Use spaces instead of tabs.
-* Use two spaces for indentation, four spaces for
- hanging indentation.
-* Adhere to a limit of `80 characters per line <https://devel.rtems.org/wiki/Developer/Coding/80_characters_per_line>`_..
-* Put function return types and names on one line if they fit.
-* Put function calls on one line if they fit.
-* No space between a function name or function-like macro and
- the opening parens.
-* Put braces on the same line as and one space after the
- conditional expression ends.
-* Put the opening brace of a function definition one line after
- the closing parenthesis of its prototype.
-* Put a single space inside and outside of each parenthesis
- of a conditional expression.
- * Exception: never put a space before a closing semi-colon.
-* Put a single space before and after ternary operators.
-* Put a single space before and after binary operators.
-* Put no space between unary operators (e.g. *, &, !, ~, ++, --)
- and their operands.
-* No spaces around dereferencing operators (-> and .).
-* Do not use more than one blank line in a row.
-* Do not use trailing whitespace at the end of a line.
-
Readability
------------