Skip to content

Commit d21bdc7

Browse files
authored
Merge pull request #58 from Shopify/semicolon
Semi-Colon
2 parents 6fc42d4 + 8c7b76a commit d21bdc7

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

shopify_python/google_styleguide.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ class GoogleStyleGuideChecker(checkers.BaseChecker):
2828
Checks that are already covered by Pylint include:
2929
- Never use catch-all 'except:' statements, or 'catch Exception' (bare-except, broad-except)
3030
- Do not use mutable objects as default values in the function or method definition (dangerous-default-value)
31+
- Do not terminate your lines with semi-colons and
32+
do not use semi-colons to put two commands on the same line. (unnecessary-semicolon, multiple-statements)
3133
"""
3234
__implements__ = (interfaces.IAstroidChecker,)
3335

0 commit comments

Comments
 (0)