Skip to content

Disable dowhile brace check by default #1524

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 27, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions scripts/cpplint.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,20 +220,21 @@
'readability/casting',
'readability/check',
'readability/constructors',
'readability/dowhile',
'readability/fn_size',
'readability/function_comment'
'readability/identifier_spacing',
'readability/identifiers',
'readability/inheritance',
'readability/multiline_comment',
'readability/multiline_string',
'readability/identifier_spacing',
'readability/identifiers',
'readability/namespace',
'readability/nolint',
'readability/nul',
'readability/strings',
'readability/todo',
'readability/throw',
'readability/todo',
'readability/utf8',
'readability/function_comment'
'runtime/arrays',
'runtime/casting',
'runtime/endl',
Expand Down Expand Up @@ -282,7 +283,7 @@
# flag. By default all errors are on, so only add here categories that should be
# off by default (i.e., categories that must be enabled by the --filter= flags).
# All entries here should start with a '-' or '+', as in the --filter= flag.
_DEFAULT_FILTERS = ['-build/include_alpha']
_DEFAULT_FILTERS = ['-build/include_alpha', '-readability/dowhile']

# The default list of categories suppressed for C (not C++) files.
_DEFAULT_C_SUPPRESSED_CATEGORIES = [
Expand Down Expand Up @@ -4197,7 +4198,7 @@ def CheckDoWhile(filename, clean_lines, linenum, error):
if Search(r'}\s*while\s*\(', line):
do_found, num = FindDoStart(clean_lines, linenum)
if do_found:
error(filename, linenum, 'readability/braces', 4,
error(filename, linenum, 'readability/dowhile', 4,
'while statement of do...while loop should be on a separate line to the closing brace')

def CheckTrailingSemicolon(filename, clean_lines, linenum, error):
Expand Down