pylintrc_travis: Enable check for unnecessary-semicolon and fix issue (#2333)

This commit is contained in:
Sebastian 2019-11-06 13:40:15 +01:00 committed by amai2012
parent 3060c7a25c
commit 2ce6167894
2 changed files with 2 additions and 2 deletions

View File

@ -2391,7 +2391,7 @@ class MisraChecker:
rule.misra_severity = res.group(1)
have_severity = True
else:
severity_loc += 1;
severity_loc += 1
# Only look for severity on the Rule line
# or the next non-blank line after

View File

@ -4,7 +4,7 @@ enable=mixed-indentation,
trailing-whitespace,
print-statement,
literal-comparison,
#unnecessary-semicolon,
unnecessary-semicolon,
#bad-indentation
[REPORTS]
reports=no