Index: clang-tools-extra/trunk/clang-tidy/objc/PropertyDeclarationCheck.cpp =================================================================== --- clang-tools-extra/trunk/clang-tidy/objc/PropertyDeclarationCheck.cpp +++ clang-tools-extra/trunk/clang-tidy/objc/PropertyDeclarationCheck.cpp @@ -39,6 +39,7 @@ /// /// Keep this list sorted. constexpr llvm::StringLiteral DefaultSpecialAcronyms[] = { + "[2-9]G", "ACL", "API", "ARGB", @@ -93,8 +94,12 @@ "VOIP", "VPN", "VR", + "W", "WAN", + "X", "XML", + "Y", + "Z", }; /// For now we will only fix 'CamelCase' or 'abc_CamelCase' property to Index: clang-tools-extra/trunk/test/clang-tidy/objc-property-declaration.m =================================================================== --- clang-tools-extra/trunk/test/clang-tidy/objc-property-declaration.m +++ clang-tools-extra/trunk/test/clang-tidy/objc-property-declaration.m @@ -17,6 +17,8 @@ @property(strong, nonatomic) NSString *supportURLsCamelCase; @property(strong, nonatomic) NSString *supportURLCamelCase; @property(strong, nonatomic) NSString *VCsPluralToAdd; +@property(assign, nonatomic) int centerX; +@property(assign, nonatomic) int enable2GBackgroundFetch; @end @interface Foo (Bar)