Skip to content

Commit c730076

Browse files
authored
Merge pull request #91 from OpenVoxProject/markdownlint
Markdownlint
2 parents c9cce3b + f6c39e7 commit c730076

3 files changed

Lines changed: 54 additions & 0 deletions

File tree

.github/workflows/markdownlint.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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

.markdownlint-cli2.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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/**

.markdownlint.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

0 commit comments

Comments
 (0)