Merge "Recognize more Clang-Tidy google warning patterns."
am: 29667bf
* commit '29667bf9d84ae79b5d2e64f42be00335e36b4653':
Recognize more Clang-Tidy google warning patterns.
Change-Id: Idcadd39c327e9998d9854baec43eaec680223f9b
This commit is contained in:
commit
f6601e6f7e
|
@ -645,6 +645,12 @@ warnpatterns = [
|
|||
{ 'category':'C/C++', 'severity':severity.TIDY, 'members':[], 'option':'',
|
||||
'description':'clang-tidy google-explicit',
|
||||
'patterns':[r".*: .+\[google-explicit-.+\]$"] },
|
||||
{ 'category':'C/C++', 'severity':severity.TIDY, 'members':[], 'option':'',
|
||||
'description':'clang-tidy google-readability',
|
||||
'patterns':[r".*: .+\[google-readability-.+\]$"] },
|
||||
{ 'category':'C/C++', 'severity':severity.TIDY, 'members':[], 'option':'',
|
||||
'description':'clang-tidy google-global',
|
||||
'patterns':[r".*: .+\[google-global-.+\]$"] },
|
||||
{ 'category':'C/C++', 'severity':severity.TIDY, 'members':[], 'option':'',
|
||||
'description':'clang-tidy modernize',
|
||||
'patterns':[r".*: .+\[modernize-.+\]$"] },
|
||||
|
|
Loading…
Reference in New Issue