Commits should fit in the sentence, “If applied, this commit will ___.”
Python
Indent with tabs, NOT spaces.
Variable names should have words sparated_by_underscores.
Constant names should be ALL_CAPS_SEPARATED_BY_UNDERSCORES.
Strings should use single quotes.
Surround operators with spaces.
The code block within a control structure (if, for, try, etc.) should be indented one additional level and not on the same line as the control structure.
HTML
Indent with tabs, NOT spaces.
Use valid XML (all tags should be closed, all attributes should have values, all values should have quotes).
Attribute values should use double quotes.
JavaScript
Indent with tabs, NOT spaces.
Variable and function names should be in camelCase.
Constant names should be ALL_CAPS_SEPARATED_BY_UNDERSCORES.
Surround operators with spaces.
Braces should open on the same line as control structures (if, for, try, etc.), NOT on the next line.
The code block within a control structure (if, for, try, etc.) should be indented one additional level and not on the same line as the control structure.