Skip to content

Commit

Permalink
Merge pull request #122 from kairveeehh/markdown-linting
Browse files Browse the repository at this point in the history
markdown linting added
  • Loading branch information
jandubois authored Mar 5, 2025
2 parents f246109 + 58960aa commit b80f2c6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
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
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

0 comments on commit b80f2c6

Please sign in to comment.