Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tmat committed Apr 9, 2022
1 parent 7f77f85 commit 0026593
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ internal interface ISyntaxFormatting

[DataContract]
internal readonly record struct LineFormattingOptions(
[property: DataMember(Order = 1)] bool UseTabs = false,
[property: DataMember(Order = 2)] int TabSize = 4,
[property: DataMember(Order = 3)] int IndentationSize = 4,
[property: DataMember(Order = 0)] bool UseTabs = false,
[property: DataMember(Order = 1)] int TabSize = 4,
[property: DataMember(Order = 2)] int IndentationSize = 4,
string? NewLine = null)
{
[property: DataMember(Order = 4)]
[property: DataMember(Order = 3)]
public string NewLine { get; init; } = NewLine ?? Environment.NewLine;

public LineFormattingOptions()
Expand Down

0 comments on commit 0026593

Please sign in to comment.