Skip to content

Commit a69863c

Browse files
Switch to markdown cli action (openhab#1443)
* Fix left markdownlint errors. Signed-off-by: Jerome Luckenbach <[email protected]> * Change to markdownlint-cli action. Signed-off-by: Jerome Luckenbach <[email protected]>
1 parent ec6c80d commit a69863c

File tree

6 files changed

+34
-52
lines changed

6 files changed

+34
-52
lines changed

.github/markdownStyle.rb

-31
This file was deleted.

.github/workflows/markdownlint.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Linting
1+
name: Checking Markdown For Errors
22

33
on:
44
push:
@@ -10,7 +10,8 @@ on:
1010
pull_request:
1111
branches:
1212
- 'main'
13-
types: [open,synchronize,reopen]
13+
types:
14+
[open,synchronize,reopen]
1415

1516
jobs:
1617
markdownlint:
@@ -20,7 +21,8 @@ jobs:
2021
- name: Check out code
2122
uses: actions/checkout@v2
2223

23-
- name: Run markdownlint (mdl)
24-
uses: bewuethr/mdl-action@v1.0.12
24+
- name: Run markdownlint-cli
25+
uses: Confectrician/github-action-markdown-cli@v2.0.0
2526
with:
26-
style-file: .github/markdownStyle.rb
27+
files: .
28+
config_file: ".markdownlint.yaml"

.markdownlint.json

-12
This file was deleted.

.markdownlint.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
default: true
2+
3+
# Expect dash usage for unorderd lists
4+
MD004:
5+
style: dash
6+
7+
# Allow long line lengths
8+
MD013: false
9+
10+
# Allow duplicate headers for different nesting
11+
MD024:
12+
allow_different_nesting: true
13+
14+
# Allow Multiple top level headers in the same document
15+
MD025: false
16+
17+
# Allow trailing punctuation in headers
18+
MD026: false
19+
MD029:
20+
style: one
21+
22+
# Allow inline HTML
23+
MD033: false
24+
25+
# Code block style
26+
MD046:
27+
style: fenced

addons/index.md

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
layout: documentation
33
---
44

5-
{% include base.html %}
6-
75
# Add-ons
86

97
All add-ons for openHAB 2 are part of the distribution.

configuration/addons.md

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
layout: documentation
33
---
44

5-
{% include base.html %}
6-
75
# Installation of Add-ons
86

97
Add-ons can be installed in different ways, described below.

0 commit comments

Comments
 (0)