We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6fc42d4 + 8c7b76a commit d21bdc7Copy full SHA for d21bdc7
1 file changed
shopify_python/google_styleguide.py
@@ -28,6 +28,8 @@ class GoogleStyleGuideChecker(checkers.BaseChecker):
28
Checks that are already covered by Pylint include:
29
- Never use catch-all 'except:' statements, or 'catch Exception' (bare-except, broad-except)
30
- 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)
33
"""
34
__implements__ = (interfaces.IAstroidChecker,)
35
0 commit comments