We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70b1322 commit a91cf7cCopy full SHA for a91cf7c
Rules/PlaceCloseBrace.cs
@@ -47,6 +47,16 @@ public class PlaceCloseBrace : ConfigurableRule
47
[ConfigurableRuleProperty(defaultValue: true)]
48
public bool IgnoreOneLineBlock { get; protected set; }
49
50
+ /// <summary>
51
+ /// Indicates if a new line should follow a close brace.
52
+ ///
53
+ /// If set to true a close brace should not be followed by any keyword.
54
55
+ /// Default value if true.
56
+ /// </summary>
57
+ [ConfigurableRuleProperty(defaultValue: true)]
58
+ public bool NewLineAfter { get; protected set; }
59
+
60
private HashSet<Token> tokensToIgnore;
61
62
/// <summary>
0 commit comments