Skip to content

Commit

Permalink
add UseCorrectCasing (#845)
Browse files Browse the repository at this point in the history
  • Loading branch information
bergmeister authored and TylerLeonhardt committed Mar 21, 2019
1 parent 0d3fe1c commit e3566f1
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ public CodeFormattingSettings(CodeFormattingSettings codeFormattingSettings)
public bool WhitespaceAfterSeparator { get; set; }
public bool IgnoreOneLineBlock { get; set; }
public bool AlignPropertyValuePairs { get; set; }
public bool UseCorrectCasing { get; set; }


/// <summary>
Expand Down Expand Up @@ -283,6 +284,9 @@ private Hashtable GetCustomPSSASettingsHashtable(int tabSize, bool insertSpaces)
{"Enable", true},
{"CheckHashtable", AlignPropertyValuePairs}
}},
{"PSUseCorrectCasing", new Hashtable {
{"Enable", true}
}},
}}
};
}
Expand Down

0 comments on commit e3566f1

Please sign in to comment.