Skip to content

markdown linting added #122

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,10 @@ jobs:
fetch-depth: 1
- name: Build
run: make
- name: Run markdownlint with auto-fix
uses: DavidAnson/markdownlint-cli2-action@05f32210e84442804257b2a6f20b273450ec8265 #v19
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I hope this works; the examples I have seen all have a space after the #. Unfortunately it isn't documented how exactly dependabot is updating comments.

with:
fix: true # Enabled to improve reported errors
globs: '**/*.md'
config: '.markdownlint.json'

4 changes: 4 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"MD013": false,
"MD033": false
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ as non-DHCP static addresses.

- Create `/etc/bootptab` like this. Make sure not to drop the "%%" header.

```
```bash
# bootptab
%%
# hostname hwtype hwaddr ipaddr bootfile
Expand All @@ -411,7 +411,7 @@ tmp-vm01 1 de:ad:be:ef:00:01 192.168.105.100

- Reload the DHCP daemon.

```
```bash
sudo /bin/launchctl kickstart -kp system/com.apple.bootpd
```

Expand Down
2 changes: 1 addition & 1 deletion test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ test/perf.sh create -c 3 2>perf.log
Run all tests with shared and bridged modes, vz and qemu vm type,
using 1, 2, and 3 vms:

```
```bash
for v in vz qemu; do
for c in $(seq 3); do
test/perf.sh run -c $c -v $v 2>>perf.log
Expand Down