Description
Quick Links
Something that really stands out to me when working on Pencil’s code is that there is no universal code style. While there are certain conventions that are more prevalent than others, it seems that it is never universally consistent. Since I think that everyone will agree that any style is better than no style at all, I compiled a list of the various conventions in use so we can have a discussion as to what to use (I’m aware I might be opening Pandora’s box here). Once there is consent on the style to use, we can unify the style of the existing code and add an editorconfig to help new contributors stay consistent with it (Qt Creator plugin available at editorconfig/editorconfig-qtcreator). I’d happily volunteer to take care of the unification and the editorconfig myself.
Ordering is arbitrary, numbers are only there to make it easier to refer to a particular item if necessary.
- Indentation
- four spaces per indent (currently prevalent by far)
- one tab per indent
- End of file
- No newline at end of file
- One newline at end of file (currently prevalent by far)
- Two newlines at end of file (why would anyone want that?)
- Whitespace in parentheses
(sometimes also in other kinds of brackets)- One space after each opening parenthesis and before each closing parenthesis:
( example )
(currently prevalent) - No spaces after opening parenthesis or before closing parenthesis:
(example)
- One space after each opening parenthesis and before each closing parenthesis:
- Whitespace before parentheses
(sometimes also before other kinds of brackets)- No whitespace before the opening parenthesis of function calls, one space before the opening parenthesis of control structures (if, while etc.) (currently prevalent by far)
- No whitespace before any opening parenthesis
- Braces
- Always one newline before the opening brace, never omit optional braces (variation of Allman) (currently prevalent by far)
- One newline before mandatory opening braces (e.g. function declarations), one space before optional opening braces (e.g. conditionals), never omit optional braces (OTBS)
- On rare occasions variations of the above with no whitespace before opening braces or omitted optional braces
- Trailing whitespace
- No trailing whitespace anywhere (currently prevalent by far)
- Have indentation even on otherwise empty lines, otherwise no trailing whitespace
- Trailing whitespace? Who cares!
- Aligning consecutive assignments
- Don’t align consecutive assignments (currently prevalent by far)
- Align consecutive assignments
- Multi-line function calls / declarations
- First argument on initial line, each remaining argument on a line of its own and aligned with the first argument, closing parenthesis on same line as last argument (currently prevalent by far)
- First argument on initial line, each remaining argument on a line of its own and indented by one indent, closing parenthesis on same line as last argument
- First argument on initial line, each remaining argument as well as closing parenthesis on a line of its own and indented by one indent
- Every single argument on its own line and indented by one indent, closing parenthesis on its own line with same indentation as first line
- Arbitrary
- Line length limit
(For obvious reasons, I have no idea if there ever was a line length limit in Pencil’s code so I’m only including the “none” option here which is easy to spot)- Who cares about line length! 428 characters on one line are nothing!
- File encoding
- ASCII / UTF-8 w/o BOM (currently prevalent by far)
- UTF-8 w/ BOM (1 file)
- Whitespace around operators
- One space before and after each operator (currently prevalent by far)
- No whitespace before or after each operator
- Arbitrary whitespace before and after each operator
- Enum case
- SCREAMING_SNAKE_CASE
- PascalCase (currently prevalent)
- Enum member case
- SCREAMING_SNAKE_CASE (currently prevalent by far)
- PascalCase
- Member var names
- camelCase (currently prevalent for structs)
- m_camelCase (quite rare)
- mPascalCase (currently prevalent for classes)
- Pass-by-reference in parameter lists
(apparently no prevalent style here)type& param
type ¶m
type & param
(quite rare, almost didn’t notice it because it looks so much like bitwise and)
- Pointers
(apparently no prevalent style here)type *identifier
,type*
when no identifier is giventype* identifier
type * identifier
(quite rare)
- Pointer pass-by-reference
(this is currently not in master but I need it for my lav exporter so I’m including the choice that I made for discussion)type *&identifier
- Aligning consecutive declarations
- Don’t align consecutive declarations (currently prevalent)
- Align consecutive declarations
- Naming of non-boolean accessor functions
get
prefix (e.g.getColor()
, currently prevalent)- No prefix (e.g.
color()
)
- Naming of boolean accessor functions
get
prefix (e.g.getPlaying()
)- No prefix (e.g.
playing()
) is
prefix (e.g.isPlaying()
, currently prevalent)getIs
prefix (e.g.getIsPlaying()
, currently unused)
- Naming of boolean mutator functions
set
prefix (e.g. setPlaying()`, currently prevalent)setIs
prefix (e.g. setIsPlaying(), currently unused)
- Naming of slots that are used exclusively for catching one specific signal
on<SignalName>
(e.g.onDurationChanged()
)- No prefix (e.g.
durationChanged()
). Obviously this will have to be different from the signal name, or in a different class from the signal.
- Documentation comment style
- Javadoc style
/** ... **/
- Qt style
/*! ... */
- Three slashes
/// ///
- Two slashes and one exclamation mark
//! //!
- Asterisk spam
/********************************************//** ... ***********************************************/
- Slash spam
///////////////////////////////////////////////// /// ... /////////////////////////////////////////////////
- Javadoc style
- Intermediate asterisks
Only effective if i, ii, or v is chosen in previous item (23).- Include intermediate asterisks
/** * ... */
- Skip intermediate asterisks
/** ... */
- Include intermediate asterisks
- Brief description format
- Always use
\brief
- Autobrief, ends the brief description at the first dot (“.”) encountered. Use
\brief
if you want more than one sentence. - A
///
or//!
comment before the main comment block
- Always use
- Member variable documentation comment style
- Regular style (22), before variable
/** Description of var */ int var;
- Regular style (22) except with
<
, after comment:int var; /**< Description of var */
- Regular style (22), before variable
- Special command format
@
prefix (Javadoc style, e.g.@param
)\
prefix (e.g.\param
)
- Parameter descriptions
@param
command/** * @param[in] var String to print */ void print(string var);
- Inline comment
void print(string var /**< [in] String to print */);
For reference, there are a few things that do seem to be consistent throughout. For instance, line endings are always LF rather than CRLF, class case is always PascalCase, method case is always camelCase. I also didn’t include a few things that are almost universally consistent and should be a given, such as no whitespace before semicolons vs one space before semicolons.
If you think I made a mistake or forgot about / missed something that should be included, let me know. (Edit 2017-07-29: Added items suggested by @scribblemaniac)
Of course the prevalent styles might give a good direction, but I suggest we don’t take them as ultimate authority if we think there is a good reason to use another style, since someone (presumably me) is going to go over all the code to apply the style anyway, so we should take that opportunity.
Now, let the clash of beliefs begin. (But please do try to be flexible and keep it civil 🙂)
Metadata
Metadata
Assignees
Type
Projects
Status
No status