| OLD | NEW |
| (Empty) | |
| 1 The following default StyleCop rules have been disabled for the add-in and unit-
test projects. |
| 2 SA1101: PrefixLocalCallsWithThis |
| 3 SA1310: FieldNamesMustNotContainUnderscore |
| 4 SA1633: FileMustHaveHeader |
| 5 SA1634: FileHeaderMustShowCopyright |
| 6 SA1635: FileHdeaderMustHaveCopyrightText |
| 7 SA1637: FileHeaderMustContainFileName |
| 8 SA1640: FileHeaderMustHaveValidCompanyText |
| 9 SA1642: ConstructorSummaryDocumentationMustBeginWithStandardText |
| 10 SA1643: DestructorSummaryDocumantionMustBeginWithStandardText |
| 11 |
| 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). |
| OLD | NEW |