|
35 | 35 | <s:Int64 x:Key="/Default/CodeStyle/CodeFormatting/XmlFormatter/MaxBlankLines/@EntryValue">1</s:Int64>
|
36 | 36 | <s:String x:Key="/Default/CodeStyle/CodeFormatting/XmlFormatter/ProcessingInstructionAttributesFormat/@EntryValue">OnSingleLine</s:String>
|
37 | 37 | <s:String x:Key="/Default/CodeStyle/CodeFormatting/XmlFormatter/TagAttributesFormat/@EntryValue">FirstAttributeOnSingleLine</s:String>
|
| 38 | + <s:String x:Key="/Default/CodeStyle/CSharpFileLayoutPatterns/Pattern/@EntryValue"><?xml version="1.0" encoding="utf-16"?>
 |
| 39 | +<Patterns xmlns="urn:schemas-jetbrains-com:member-reordering-patterns">
 |
| 40 | + <TypePattern DisplayName="COM interfaces or structs" Priority="0" RemoveRegions="All">
 |
| 41 | + <TypePattern.Match>
 |
| 42 | + <Or>
 |
| 43 | + <And>
 |
| 44 | + <Kind Is="Interface" />
 |
| 45 | + <Or>
 |
| 46 | + <HasAttribute Name="System.Runtime.InteropServices.InterfaceTypeAttribute" />
 |
| 47 | + <HasAttribute Name="System.Runtime.InteropServices.ComImport" />
 |
| 48 | + </Or>
 |
| 49 | + </And>
 |
| 50 | + <HasAttribute Name="System.Runtime.InteropServices.StructLayoutAttribute" />
 |
| 51 | + </Or>
 |
| 52 | + </TypePattern.Match>
 |
| 53 | + </TypePattern>
 |
| 54 | + <FilePattern />
 |
| 55 | + <TypePattern DisplayName="NUnit Test Fixtures" Priority="0" RemoveRegions="All">
 |
| 56 | + <TypePattern.Match>
 |
| 57 | + <And>
 |
| 58 | + <Kind Is="Class" />
 |
| 59 | + <HasAttribute Name="NUnit.Framework.TestFixtureAttribute" Inherited="True" />
 |
| 60 | + <HasAttribute Name="NUnit.Framework.TestCaseFixtureAttribute" Inherited="True" />
 |
| 61 | + </And>
 |
| 62 | + </TypePattern.Match>
 |
| 63 | + <Entry DisplayName="Setup/Teardown Methods">
 |
| 64 | + <Entry.Match>
 |
| 65 | + <And>
 |
| 66 | + <Kind Is="Method" />
 |
| 67 | + <Or>
 |
| 68 | + <HasAttribute Name="NUnit.Framework.SetUpAttribute" Inherited="True" />
 |
| 69 | + <HasAttribute Name="NUnit.Framework.TearDownAttribute" Inherited="True" />
 |
| 70 | + <HasAttribute Name="NUnit.Framework.FixtureSetUpAttribute" Inherited="True" />
 |
| 71 | + <HasAttribute Name="NUnit.Framework.FixtureTearDownAttribute" Inherited="True" />
 |
| 72 | + </Or>
 |
| 73 | + </And>
 |
| 74 | + </Entry.Match>
 |
| 75 | + </Entry>
 |
| 76 | + <Entry DisplayName="All other members" />
 |
| 77 | + <Entry DisplayName="Test Methods" Priority="100">
 |
| 78 | + <Entry.Match>
 |
| 79 | + <And>
 |
| 80 | + <Kind Is="Method" />
 |
| 81 | + <HasAttribute Name="NUnit.Framework.TestAttribute" />
 |
| 82 | + </And>
 |
| 83 | + </Entry.Match>
 |
| 84 | + <Entry.SortBy>
 |
| 85 | + <Name />
 |
| 86 | + </Entry.SortBy>
 |
| 87 | + </Entry>
 |
| 88 | + </TypePattern>
 |
| 89 | + <TypePattern DisplayName="Default Pattern" Priority="0" RemoveRegions="All">
 |
| 90 | + <Entry DisplayName="Public Delegates" Priority="100">
 |
| 91 | + <Entry.Match>
 |
| 92 | + <And>
 |
| 93 | + <Access Is="Public" />
 |
| 94 | + <Kind Is="Delegate" />
 |
| 95 | + </And>
 |
| 96 | + </Entry.Match>
 |
| 97 | + <Entry.SortBy>
 |
| 98 | + <Name />
 |
| 99 | + </Entry.SortBy>
 |
| 100 | + </Entry>
 |
| 101 | + <Entry DisplayName="Public Enums" Priority="100">
 |
| 102 | + <Entry.Match>
 |
| 103 | + <And>
 |
| 104 | + <Access Is="Public" />
 |
| 105 | + <Kind Is="Enum" />
 |
| 106 | + </And>
 |
| 107 | + </Entry.Match>
 |
| 108 | + <Entry.SortBy>
 |
| 109 | + <Name />
 |
| 110 | + </Entry.SortBy>
 |
| 111 | + </Entry>
 |
| 112 | + <Entry DisplayName="Static Fields and Constants">
 |
| 113 | + <Entry.Match>
 |
| 114 | + <Or>
 |
| 115 | + <Kind Is="Constant" />
 |
| 116 | + <And>
 |
| 117 | + <Kind Is="Field" />
 |
| 118 | + <Static />
 |
| 119 | + </And>
 |
| 120 | + </Or>
 |
| 121 | + </Entry.Match>
 |
| 122 | + <Entry.SortBy>
 |
| 123 | + <Kind Order="Constant Field" />
 |
| 124 | + </Entry.SortBy>
 |
| 125 | + </Entry>
 |
| 126 | + <Entry DisplayName="Fields">
 |
| 127 | + <Entry.Match>
 |
| 128 | + <And>
 |
| 129 | + <Kind Is="Field" />
 |
| 130 | + <Not>
 |
| 131 | + <Static />
 |
| 132 | + </Not>
 |
| 133 | + </And>
 |
| 134 | + </Entry.Match>
 |
| 135 | + <Entry.SortBy>
 |
| 136 | + <Readonly />
 |
| 137 | + <Name />
 |
| 138 | + </Entry.SortBy>
 |
| 139 | + </Entry>
 |
| 140 | + <Entry DisplayName="Constructors">
 |
| 141 | + <Entry.Match>
 |
| 142 | + <Kind Is="Constructor" />
 |
| 143 | + </Entry.Match>
 |
| 144 | + <Entry.SortBy>
 |
| 145 | + <Static />
 |
| 146 | + </Entry.SortBy>
 |
| 147 | + </Entry>
 |
| 148 | + <Entry DisplayName="Properties, Indexers">
 |
| 149 | + <Entry.Match>
 |
| 150 | + <Or>
 |
| 151 | + <Kind Is="Property" />
 |
| 152 | + <Kind Is="Indexer" />
 |
| 153 | + </Or>
 |
| 154 | + </Entry.Match>
 |
| 155 | + </Entry>
 |
| 156 | + <Entry DisplayName="Interface Implementations" Priority="100">
 |
| 157 | + <Entry.Match>
 |
| 158 | + <And>
 |
| 159 | + <Kind Is="Member" />
 |
| 160 | + <ImplementsInterface />
 |
| 161 | + </And>
 |
| 162 | + </Entry.Match>
 |
| 163 | + <Entry.SortBy>
 |
| 164 | + <ImplementsInterface Immediate="True" />
 |
| 165 | + </Entry.SortBy>
 |
| 166 | + </Entry>
 |
| 167 | + <Entry DisplayName="All other members" />
 |
| 168 | + <Entry DisplayName="Nested Types">
 |
| 169 | + <Entry.Match>
 |
| 170 | + <Kind Is="Type" />
 |
| 171 | + </Entry.Match>
 |
| 172 | + </Entry>
 |
| 173 | + </TypePattern>
 |
| 174 | + <FilePattern RemoveRegions="All" />
 |
| 175 | + <TypePattern DisplayName="Type Pattern" Priority="0" RemoveRegions="All" />
 |
| 176 | + <FilePattern RemoveRegions="All" />
 |
| 177 | + <TypePattern DisplayName="Type Pattern" Priority="0" />
 |
| 178 | + <FilePattern />
 |
| 179 | + <TypePattern DisplayName="Type Pattern" Priority="0" />
 |
| 180 | + <FilePattern />
 |
| 181 | + <TypePattern DisplayName="Type Pattern" Priority="0" RemoveRegions="All" />
 |
| 182 | +</Patterns></s:String> |
38 | 183 | <s:String x:Key="/Default/CodeStyle/CSharpMemberOrderPattern/CustomPattern/@EntryValue"><?xml version="1.0" encoding="utf-8" ?>
|
39 | 184 | 
|
40 | 185 | <!--
|
@@ -260,6 +405,41 @@ II.2.12 <HandlesEvent />
|
260 | 405 | Copyright (c) 2014 - $CURRENT_YEAR$ GitTools. All rights reserved.
|
261 | 406 | </copyright>
|
262 | 407 | --------------------------------------------------------------------------------------------------------------------</s:String>
|
| 408 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FCONSTRUCTOR/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> |
| 409 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FFUNCTION/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 410 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FGLOBAL_005FVARIABLE/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> |
| 411 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FLABEL/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 412 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FLOCAL_005FVARIABLE/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 413 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FOBJECT_005FPROPERTY_005FOF_005FFUNCTION/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 414 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=JS_005FPARAMETER/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 415 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FCLASS/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> |
| 416 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FENUM/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> |
| 417 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FENUM_005FMEMBER/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> |
| 418 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FINTERFACE/@EntryIndexedValue"><Policy Inspect="True" Prefix="I" Suffix="" Style="AaBb" /></s:String> |
| 419 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FINTERFACE_005FFOR_005FJS_005FGLOBAL_005FVARIABLE/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> |
| 420 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FMODULE/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> |
| 421 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FMODULE_005FEXPORTED/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 422 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FMODULE_005FLOCAL/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 423 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPRIVATE_005FMEMBER_005FACCESSOR/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 424 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPRIVATE_005FSTATIC_005FTYPE_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 425 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPRIVATE_005FTYPE_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 426 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPRIVATE_005FTYPE_005FMETHOD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 427 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPROTECTED_005FMEMBER_005FACCESSOR/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 428 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPROTECTED_005FSTATIC_005FTYPE_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 429 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPROTECTED_005FTYPE_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 430 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPROTECTED_005FTYPE_005FMETHOD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 431 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPUBLIC_005FMEMBER_005FACCESSOR/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 432 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPUBLIC_005FSTATIC_005FTYPE_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 433 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPUBLIC_005FTYPE_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 434 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FPUBLIC_005FTYPE_005FMETHOD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 435 | + <s:String x:Key="/Default/CodeStyle/Naming/JavaScriptNaming/UserRules/=TS_005FTYPE_005FPARAMETER/@EntryIndexedValue"><Policy Inspect="True" Prefix="T" Suffix="" Style="AaBb" /></s:String> |
| 436 | + <s:String x:Key="/Default/CodeStyle/Naming/WebNaming/UserRules/=ASP_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> |
| 437 | + <s:String x:Key="/Default/CodeStyle/Naming/WebNaming/UserRules/=ASP_005FHTML_005FCONTROL/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> |
| 438 | + <s:String x:Key="/Default/CodeStyle/Naming/WebNaming/UserRules/=ASP_005FTAG_005FNAME/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> |
| 439 | + <s:String x:Key="/Default/CodeStyle/Naming/WebNaming/UserRules/=ASP_005FTAG_005FPREFIX/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> |
| 440 | + <s:String x:Key="/Default/CodeStyle/Naming/XamlNaming/UserRules/=NAMESPACE_005FALIAS/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String> |
| 441 | + <s:String x:Key="/Default/CodeStyle/Naming/XamlNaming/UserRules/=XAML_005FFIELD/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> |
| 442 | + <s:String x:Key="/Default/CodeStyle/Naming/XamlNaming/UserRules/=XAML_005FRESOURCE/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /></s:String> |
263 | 443 | <s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateBlankLinesAroundFieldToBlankLinesAroundProperty/@EntryIndexedValue">True</s:Boolean>
|
264 | 444 | <s:String x:Key="/Default/Environment/UserInterface/ShortcutSchemeName/@EntryValue">None</s:String>
|
265 | 445 | <s:String x:Key="/Default/FilterSettingsManager/AttributeFilterXml/@EntryValue"><data /></s:String>
|
|
0 commit comments