Skip to content

Commit f9901de

Browse files
authored
Update linter to allow non-const references to match more recent google style guide (#920)
Non-const references are now allowed by google style guide
1 parent 25da83c commit f9901de

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

scripts/gha/lint_commenter.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
'build/include_subdir', # doesn't know about our include paths
4343
'build/c++11', # ignore "unapproved c++11 header" warning
4444
'readability/casting', # allow non-C++ casts in rare occasions
45+
'runtime/references', # allow non-const references
4546
'whitespace/indent', # we rely on our code formatter for this...
4647
'whitespace/line_length' # ...and for this
4748
]

0 commit comments

Comments
 (0)