Bug 196374

Summary: check-webkit-style says an enum member named "UI" does not use InterCaps
Product: WebKit Reporter: John Wilander <wilander>
Component: Tools / TestsAssignee: Nobody <webkit-unassigned>
Status: NEW ---    
Severity: Normal CC: lforschler
Priority: P2    
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   

Description John Wilander 2019-03-28 14:45:10 PDT
My patch for https://bugs.webkit.org/show_bug.cgi?id=196281 gets flagged for style because of this enum:

enum class WebsiteDataProcessType { Network, UI, Web };

The error I get is this:
ERROR: Source/WebKit/Shared/WebsiteData/WebsiteData.h:42:  enum members should use InterCaps with an initial capital letter or initial 'k' for C-style enums.  [readability/enum_casing] [4]