Open
Description
Ref: #2723 (comment)
Ensure our .md docs are consistent in style/formatting
- add root package.json script
e.g.
"lint:markdown": "markdownlint-cli2 \"**/*.md\"",
or include in
Line 37 in bd96489
2 ensure running in CI
e.g.
name: Markdown lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm ci
- run: npm run lint:markdown
we currently already have a lint
job so probably want to add it around here
Lines 47 to 56 in bd96489
3 adding a rule to autofix single quotes on lockdown options string values would be ideal