Merge "Recognize more Clang-Tidy google warning patterns."
This commit is contained in:
commit
29667bf9d8
|
@ -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