- Use a single space between function name and opening parenthesis
This facilitates easy selections within both Windows and Macintosh when double-clicking to highlightFunction Name ( with; parameters )
good
Function Name(with; parameters)
bad
- (optional) Remove the space between each argument and it's trailing semicolon
This increases readability by reducing excessive spacingFunction Name ( with; parameters )
good
Function Name ( with ; parameters )
bad