mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:16:13 +01:00
[TASK] Limit the line length for Markdown files via .editorconfig
(#251)
The indentation of 4 spaces for Markdown and XML files already is set via the default configuration in the `.editorconfig`. Fixes #244
This commit is contained in:
parent
dd2378416e
commit
f4050e01e8
1 changed files with 4 additions and 0 deletions
|
@ -47,3 +47,7 @@ indent_style = tab
|
||||||
# .htaccess
|
# .htaccess
|
||||||
[.htaccess]
|
[.htaccess]
|
||||||
indent_style = tab
|
indent_style = tab
|
||||||
|
|
||||||
|
# Markdown files
|
||||||
|
[*.md]
|
||||||
|
max_line_length = 80
|
||||||
|
|
Loading…
Reference in a new issue