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
32
32
/// Whether to include hashtable key-value pairs where there is a comment
33
33
/// between the key and the equals sign in alignment.
34
34
/// </summary>
35
- [ ConfigurableRuleProperty ( defaultValue : false ) ]
35
+ [ ConfigurableRuleProperty ( defaultValue : true ) ]
36
36
public bool AlignHashtableKvpWithInterveningComment { get ; set ; }
37
37
38
38
/// <summary>
@@ -51,7 +51,7 @@ public class AlignAssignmentStatement : ConfigurableRule
51
51
/// Whether to include enum members where there is a comment
52
52
/// between the name and the equals sign in alignment.
53
53
/// </summary>
54
- [ ConfigurableRuleProperty ( defaultValue : false ) ]
54
+ [ ConfigurableRuleProperty ( defaultValue : true ) ]
55
55
public bool AlignEnumMemberWithInterveningComment { get ; set ; }
56
56
57
57
/// <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
76
76
because the property value pairs in a DSC configuration are parsed as key-value
77
77
pairs of a hashtable.
78
78
79
- #### AlignHashtableKvpWithInterveningComment: bool (Default value is ` $false ` )
79
+ #### AlignHashtableKvpWithInterveningComment: bool (Default value is ` $true ` )
80
80
81
81
Include key-value pairs in the alignment that have an intervening comment - that
82
82
is to say a comment between the key name and the equals sign.
@@ -116,7 +116,7 @@ $hashtable = @{
116
116
117
117
Enforce alignment of assignment statements of an Enum definition.
118
118
119
- #### AlignEnumMemberWithInterveningComment: bool (Default value is ` $false ` )
119
+ #### AlignEnumMemberWithInterveningComment: bool (Default value is ` $true ` )
120
120
121
121
Include enum members in the alignment that have an intervening comment - that
122
122
is to say a comment between the member name and the equals sign.
You can’t perform that action at this time.
0 commit comments