| Index: visual_studio/NativeClientVSAddIn/StyleCopModifications.txt
|
| diff --git a/visual_studio/NativeClientVSAddIn/StyleCopModifications.txt b/visual_studio/NativeClientVSAddIn/StyleCopModifications.txt
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c9fe968ae05c65272793d6c3ed730c2f0ebf7380
|
| --- /dev/null
|
| +++ b/visual_studio/NativeClientVSAddIn/StyleCopModifications.txt
|
| @@ -0,0 +1,12 @@
|
| +The following default StyleCop rules have been disabled for the add-in and unit-test projects.
|
| +SA1101: PrefixLocalCallsWithThis
|
| +SA1310: FieldNamesMustNotContainUnderscore
|
| +SA1633: FileMustHaveHeader
|
| +SA1634: FileHeaderMustShowCopyright
|
| +SA1635: FileHdeaderMustHaveCopyrightText
|
| +SA1637: FileHeaderMustContainFileName
|
| +SA1640: FileHeaderMustHaveValidCompanyText
|
| +SA1642: ConstructorSummaryDocumentationMustBeginWithStandardText
|
| +SA1643: DestructorSummaryDocumantionMustBeginWithStandardText
|
| +
|
| +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).
|
|
|