We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f37a650 commit 0774a65Copy full SHA for 0774a65
.github/workflows/lint.yaml
@@ -0,0 +1,16 @@
1
+on:
2
+ pull_request:
3
+ push:
4
+ branches:
5
+ - main
6
+
7
+jobs:
8
+ lint:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: DavidAnson/markdownlint-cli2-action@v17
13
+ with:
14
+ globs: |
15
+ **/*.md
16
+ !vendor/**/*.md
.markdownlint.yml
@@ -0,0 +1,5 @@
+default: true
+MD002: false # First header should be a h1 header
+MD013: false # Line length
+MD041: false # First line in file should be a top level header
0 commit comments