File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ public class AlignAssignmentStatement : ConfigurableRule
3232 /// Whether to include hashtable key-value pairs where there is a comment
3333 /// between the key and the equals sign in alignment.
3434 /// </summary>
35- [ ConfigurableRuleProperty ( defaultValue : false ) ]
35+ [ ConfigurableRuleProperty ( defaultValue : true ) ]
3636 public bool AlignHashtableKvpWithInterveningComment { get ; set ; }
3737
3838 /// <summary>
@@ -51,7 +51,7 @@ public class AlignAssignmentStatement : ConfigurableRule
5151 /// Whether to include enum members where there is a comment
5252 /// between the name and the equals sign in alignment.
5353 /// </summary>
54- [ ConfigurableRuleProperty ( defaultValue : false ) ]
54+ [ ConfigurableRuleProperty ( defaultValue : true ) ]
5555 public bool AlignEnumMemberWithInterveningComment { get ; set ; }
5656
5757 /// <summary>
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ Configuration. There is only one setting for hashtable and DSC configuration
7676because the property value pairs in a DSC configuration are parsed as key-value
7777pairs of a hashtable.
7878
79- #### AlignHashtableKvpWithInterveningComment: bool (Default value is ` $false ` )
79+ #### AlignHashtableKvpWithInterveningComment: bool (Default value is ` $true ` )
8080
8181Include key-value pairs in the alignment that have an intervening comment - that
8282is to say a comment between the key name and the equals sign.
@@ -116,7 +116,7 @@ $hashtable = @{
116116
117117Enforce alignment of assignment statements of an Enum definition.
118118
119- #### AlignEnumMemberWithInterveningComment: bool (Default value is ` $false ` )
119+ #### AlignEnumMemberWithInterveningComment: bool (Default value is ` $true ` )
120120
121121Include enum members in the alignment that have an intervening comment - that
122122is to say a comment between the member name and the equals sign.
You can’t perform that action at this time.
0 commit comments