Skip to content

Commit

Permalink
editorconfig: fix markdown line length configuration
Browse files Browse the repository at this point in the history
Fixes markdown line length configuration setting by moving the comment
into its own line. This is required by the editorconfig specification.
  • Loading branch information
tiborsimko committed Oct 11, 2023
1 parent 6abd015 commit f98f637
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ trim_trailing_whitespace = true
[*.md]
indent_size = 2
indent_style = space
max_line_length = 100 # Please keep this in sync with bin/lesson_check.py!
# Please keep max_line_length in sync with bin/lesson_check.py!
max_line_length = 100

[*.r]
max_line_length = 80
Expand Down

0 comments on commit f98f637

Please sign in to comment.