Skip to content

Commit 3e7c817

Browse files
shijiashuaiqwencoder
andcommitted
ci: fix markdownlint config format error
- Create .markdownlint.json config file - Update workflow to use file instead of inline JSON Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
1 parent 85510ad commit 3e7c817

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/quality-check.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,7 @@ jobs:
1818
uses: DavidAnson/markdownlint-cli2-action@v13
1919
with:
2020
globs: '**/*.md'
21-
config: |
22-
{
23-
"MD013": false,
24-
"MD033": false,
25-
"MD041": false
26-
}
21+
config: '.markdownlint.json'
2722

2823
- name: 验证 .cursorrules 文件格式
2924
run: |

.markdownlint.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"MD013": false,
3+
"MD033": false,
4+
"MD041": false
5+
}

0 commit comments

Comments
 (0)