diff options
| author | 2021-10-23 13:43:24 +0200 | |
|---|---|---|
| committer | 2021-10-23 13:43:24 +0200 | |
| commit | acbba9adb2e362079ce1fb84be1868b198cc1da0 (patch) | |
| tree | eeeaa9e522f82a9f8f9baaef3b6bd23950eab71a /.editorconfig | |
| parent | dd02c79092aa25cacff1c831815e9ca02b06b620 (diff) | |
Improved markdownlint (#3918)
* Improved markdownlint
* Relaxed rules slighlty
* `npm run markdownlint` for automatic tests
* `npm run markdownlint_fix` for automatic syntax fixing
* Applied the fixes on all our Markdown files
Diffstat (limited to '.editorconfig')
| -rw-r--r-- | .editorconfig | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.editorconfig b/.editorconfig index 7a025cfcd..bcb7b4666 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,7 +1,5 @@ # http://EditorConfig.org -root = true - [*] charset = utf-8 end_of_line = lf @@ -12,15 +10,16 @@ trim_trailing_whitespace = true indent_style = tab [*.{html,php,phtml}] -indent_size = 4 indent_style = tab [*.js] +indent_style = tab + +[*.md] indent_size = 4 indent_style = tab [*.xml] -indent_size = 4 indent_style = tab [*.yml] |
