diff --git a/.editorconfig b/.editorconfig index f20e02e1c9..b431f6af67 100644 --- a/.editorconfig +++ b/.editorconfig @@ -26,3 +26,8 @@ indent_style = space [*.{.sh}] indent_style = tab indent_size = 4 + +# MARKDOWN Files +[*.{md}] +indent_style = space +indent_size = 4 \ No newline at end of file diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000000..d3f9e5f27f --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,9 @@ +{ + "MD013": false, + "MD030": { + "ul_single": 3, + "ol_single": 1, + "ul_multi": 3, + "ol_multi": 1 + } + } diff --git a/.vscode/extensions.json b/.vscode/extensions.json index c7a7dab105..712168f3cf 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -3,6 +3,7 @@ "ms-python.python", "editorconfig.editorconfig", "yzhang.markdown-all-in-one", + "DavidAnson.vscode-markdownlint", "esbenp.prettier-vscode", "timonwong.shellcheck", "redhat.vscode-yaml"