From c64e6a734e1d919b3ca0750082948bf184bfb7f6 Mon Sep 17 00:00:00 2001 From: Giorgi Meskhidze <167236099+GIgako19929@users.noreply.github.com> Date: Mon, 3 Feb 2025 11:46:17 -0500 Subject: [PATCH] Show Update `.github/linters/.markdown-lint.yml` to configure markdown linting rules. * **Ordered list item prefix** - Set style to 'one' for MD029 * **Line length** - Set line length to 80 for MD013 - Disable line length check for code blocks, tables, headings, headings with children, and code lines --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/GIgako19929/attest-build-provenance?shareId=XXXX-XXXX-XXXX-XXXX). --- .github/linters/.markdown-lint.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/linters/.markdown-lint.yml b/.github/linters/.markdown-lint.yml index 6d79773..9d75375 100644 --- a/.github/linters/.markdown-lint.yml +++ b/.github/linters/.markdown-lint.yml @@ -5,3 +5,12 @@ MD004: # Ordered list item prefix MD029: style: one + +# Line length +MD013: + line_length: 80 + code_blocks: false + tables: false + headings: false + headings_with_children: false + code_lines: false