Skip to content

Commit 466248e

Browse files
author
Kapil Borle
committed
Make properties of FormattingOptions type public
1 parent d799a88 commit 466248e

File tree

1 file changed

+2
-2
lines changed
  • src/PowerShellEditorServices.Protocol/LanguageServer

1 file changed

+2
-2
lines changed

src/PowerShellEditorServices.Protocol/LanguageServer/Formatting.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,12 @@ public class FormattingOptions
8484
/// <summary>
8585
/// Size of a tab in spaces.
8686
/// </summary>
87-
int TabSize { get; set; }
87+
public int TabSize { get; set; }
8888

8989
/// <summary>
9090
/// Prefer spaces over tabs.
9191
/// </summary>
92-
bool InsertSpaces { get; set; }
92+
public bool InsertSpaces { get; set; }
9393
}
9494
}
9595

0 commit comments

Comments
 (0)