From 0bc6c54e9f5ea3e8f9df6f19d36d4ec244fbacad Mon Sep 17 00:00:00 2001 From: Andrzej Stencel Date: Tue, 19 Jan 2021 17:21:34 +0100 Subject: [PATCH] Add configuration for VS Code's Markdownlint extension --- .markdownlint.jsonc | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .markdownlint.jsonc diff --git a/.markdownlint.jsonc b/.markdownlint.jsonc new file mode 100644 index 0000000000..ecc89ceb36 --- /dev/null +++ b/.markdownlint.jsonc @@ -0,0 +1,9 @@ +/** + * Note: This configuration is used by VS Code's Markdownlint extension and is only included for convenience. + * The original and primary Markdownlint configuration as used in CI is .markdownlint/style.rb. + */ +{ + "default": true, + "MD004": { "style": "dash" }, + "MD013": { "line_length": 120, "code_blocks": false, "tables": false } +}