Skip to content

Commit 252c0df

Browse files
authored
Replace super-linter with dedicated markdownlint and shellcheck images (#142)
1 parent 49f7dec commit 252c0df

3 files changed

Lines changed: 16 additions & 14 deletions

File tree

.github/linters/.markdown-lint.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/workflows/pr-repo-hygiene.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,21 @@ permissions:
1010
packages: read
1111

1212
jobs:
13-
superlinter:
14-
name: Lint bash, docker, markdown, and yaml
13+
lint-markdown:
14+
name: Lint markdown
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v6.0.2
18-
- name: Lint codebase
19-
uses: docker://github/super-linter:v3.8.3
20-
env:
21-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22-
VALIDATE_ALL_CODEBASE: true
23-
VALIDATE_BASH: true
24-
VALIDATE_DOCKERFILE: true
25-
VALIDATE_MD: true
26-
VALIDATE_YAML: true
18+
- name: Lint markdown
19+
uses: docker://ghcr.io/ponylang/shared-docker-ci-markdownlint:20260810
20+
21+
lint-shell:
22+
name: Lint shell scripts
23+
runs-on: ubuntu-latest
24+
steps:
25+
- uses: actions/checkout@v6.0.2
26+
- name: Lint shell scripts
27+
uses: docker://ghcr.io/ponylang/shared-docker-ci-shellcheck:20260810
2728

2829
verify-changelog:
2930
name: Verify CHANGELOG is valid

.markdownlint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"MD013": false,
3+
"MD051": false
4+
}

0 commit comments

Comments
 (0)