Skip to content

Commit b4b1bad

Browse files
committed
Update maximum code line length to 80
This is required due to increasing the code font size. We could probably get away with a slightly higher limit (maybe even 86 or 87) but 80 feels suitably "standard" and may avoid problems in the future if indentation or font sizes are tweaked.
1 parent aacc5a8 commit b4b1bad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/MarkdownConverter/Converter/MarkdownSourceConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class MarkdownSourceConverter
2121
/// <summary>
2222
/// The maximum code line length that's allowed without generating a warning.
2323
/// </summary>
24-
public const int MaximumCodeLineLength = 95;
24+
public const int MaximumCodeLineLength = 80;
2525

2626
private const int InitialIndentation = 540;
2727
private const int ListLevelIndentation = 360;

0 commit comments

Comments
 (0)