Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -207,6 +207,7 @@ public CodeFormattingSettings(CodeFormattingSettings codeFormattingSettings)
public bool WhitespaceInsideBrace { get; set; }
public bool IgnoreOneLineBlock { get; set; }
public bool AlignPropertyValuePairs { get; set; }
public bool AlignEnumMemberValues { get; set; }
public bool UseCorrectCasing { get; set; }

/// <summary>
Expand DownExpand Up@@ -298,7 +299,8 @@ private Hashtable GetCustomPSSASettingsHashtable(int tabSize, bool insertSpaces)
"PSAlignAssignmentStatement",
new Hashtable {
{ "Enable", true },
{ "CheckHashtable", AlignPropertyValuePairs }
{ "CheckHashtable", AlignPropertyValuePairs },
{ "CheckEnums", AlignEnumMemberValues },
}
},
{
Expand Down
Loading