| OLD | NEW |
| 1 The following default StyleCop rules have been disabled for the add-in and unit-
test projects. | 1 The following default StyleCop rules have been disabled for the add-in and unit-
test projects. |
| 2 SA1101: PrefixLocalCallsWithThis | 2 SA1101: PrefixLocalCallsWithThis |
| 3 SA1126: PrefixCallsCorrectly |
| 3 SA1310: FieldNamesMustNotContainUnderscore | 4 SA1310: FieldNamesMustNotContainUnderscore |
| 4 SA1633: FileMustHaveHeader | 5 SA1633: FileMustHaveHeader |
| 5 SA1634: FileHeaderMustShowCopyright | 6 SA1634: FileHeaderMustShowCopyright |
| 6 SA1635: FileHdeaderMustHaveCopyrightText | 7 SA1635: FileHdeaderMustHaveCopyrightText |
| 7 SA1637: FileHeaderMustContainFileName | 8 SA1637: FileHeaderMustContainFileName |
| 8 SA1640: FileHeaderMustHaveValidCompanyText | 9 SA1640: FileHeaderMustHaveValidCompanyText |
| 9 SA1642: ConstructorSummaryDocumentationMustBeginWithStandardText | 10 SA1642: ConstructorSummaryDocumentationMustBeginWithStandardText |
| 10 SA1643: DestructorSummaryDocumantionMustBeginWithStandardText | 11 SA1643: DestructorSummaryDocumantionMustBeginWithStandardText |
| 11 | 12 |
| 12 Namely, this disables the requirement for file headers, links within constructor
and destructor summaries, and allows us to name member fields with a underscore
suffix instead of 'this.' prefix (to follow chrome C++ style). | 13 Namely, this disables the requirement for file headers, links within constructor
and destructor summaries, and allows us to name member fields with a underscore
suffix instead of 'this.' prefix (to follow chrome C++ style). |
| OLD | NEW |