Fix caps, hyphenation, and display filename in monospace

John Gardner
2021-12-22 15:50:41 +11:00
parent ba4037b445
commit 0d7ef12884

@@ -1,4 +1,4 @@
Simple test job for GitLab (analyse testScript.sh): Simple test job for GitLab (analyse `testScript.sh`):
```yaml ```yaml
test: test:
@@ -8,7 +8,7 @@ test:
- shellcheck testScript.sh - shellcheck testScript.sh
``` ```
Here is a CI job that will lint all shell scripts in a git repository: Here is a CI job that will lint all shell-scripts in a Git repository:
```yaml ```yaml
test: test:
@@ -19,4 +19,4 @@ test:
- apk add git - apk add git
script: script:
- git ls-files --exclude='*.sh' --ignored -z | xargs -0r shellcheck - git ls-files --exclude='*.sh' --ignored -z | xargs -0r shellcheck
``` ```