laminas / laminas-continuous-integration-action

GitHub Action for running a QA check
BSD 3-Clause "New" or "Revised" License
19 stars 19 forks source link

Update markdownlint configuration for list indentation #222

Closed froschdesign closed 6 months ago

froschdesign commented 6 months ago

The configuration for markdownlint has been updated to include setting the indentation of list item to 4 spaces ("MD007"). This is intended to ensure the correct formatting for markdown documents in MkDocs.

References:

Ocramius commented 6 months ago

Ah, just a note: this obviously broke a hell of pipelines downstream.

@froschdesign is 2 or 4 spaces acceptable, or is 4 strictly necessary for our needs?

Xerkus commented 6 months ago

It is expected.

Strictly 4 due to mkdocs using original markdown, not commonmark, with some strict interpretations of said spec.

See: https://github.com/mezzio/mezzio/pull/179