File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ # Managed by modulesync - DO NOT EDIT
3+ # https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
4+
5+ name : Markdown Lint
6+
7+ on :
8+ pull_request : {}
9+ push :
10+ branches :
11+ - master
12+ workflow_dispatch : {}
13+
14+ permissions :
15+ contents : read
16+
17+ jobs :
18+ markdown-lint :
19+ runs-on : ubuntu-latest
20+ steps :
21+ - uses : actions/checkout@v6
22+ - uses : DavidAnson/markdownlint-cli2-action@v22
23+ with :
24+ globs : ' **/*.{md,markdown}'
25+ continue-on-error : true # Allow this job to fail for now
Original file line number Diff line number Diff line change 1+ ---
2+ # Managed by modulesync - DO NOT EDIT
3+ # https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
4+
5+ ignores :
6+ - .github/**
7+ - .idea/**
8+ - .vendor/**
9+ - .vscode/**
10+ - CHANGELOG.md
11+ - test/**
12+ - vendor/**
13+ - output/**
14+ - references_output/**
15+ - externalsources/**
Original file line number Diff line number Diff line change 1+ ---
2+ # Managed by modulesync - DO NOT EDIT
3+ # https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
4+
5+ default : true
6+
7+ line-length :
8+ line_length : 210
9+
10+ no-inline-html :
11+ allowed_elements :
12+ - br
13+
14+ descriptive-link-text : false
You can’t perform that action at this time.
0 commit comments