Skip to content

Commit f84c02a

Browse files
committed
Add md lint
1 parent 99999f2 commit f84c02a

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/lint.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@ jobs:
1515
uses: yoriiis/actions/.github/workflows/lint.yml@main
1616
with:
1717
typescript-status: false
18-
markdown-status: false

.markdownlint-cli2.cjs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
config: {
3+
MD013: false, // Line length
4+
MD024: false, // Multiple headers with the same content
5+
MD033: false // No inline HTML
6+
},
7+
ignores: ['**/node_modules/**', '.github/PULL_REQUEST_TEMPLATE.md']
8+
}

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Built with Starlight](https://astro.badg.es/v2/built-with-starlight/tiny.svg)](https://starlight.astro.build)
44

5-
```
5+
```bash
66
npm create astro@latest -- --template starlight
77
```
88

@@ -12,7 +12,7 @@ npm create astro@latest -- --template starlight
1212

1313
Inside of your Astro + Starlight project, you'll see the following folders and files:
1414

15-
```
15+
```text
1616
.
1717
├── public/
1818
├── src/

0 commit comments

Comments
 (0)