ソースを参照

Merge pull request #5712 from vcmi/dependabot/github_actions/DavidAnson/markdownlint-cli2-action-20

Bump DavidAnson/markdownlint-cli2-action from 19 to 20
Ivan Savenko 7 ヶ月 前
コミット
1909975e03
2 ファイル変更6 行追加3 行削除
  1. 1 1
      .github/workflows/github.yml
  2. 5 2
      CI/example.markdownlint-cli2.jsonc

+ 1 - 1
.github/workflows/github.yml

@@ -408,7 +408,7 @@ jobs:
             python3 CI/validate_json.py
 
         - name: Validate Markdown
-          uses: DavidAnson/markdownlint-cli2-action@v19
+          uses: DavidAnson/markdownlint-cli2-action@v20
           with:
             config: 'CI/example.markdownlint-cli2.jsonc'
             globs: '**/*.md'

+ 5 - 2
CI/example.markdownlint-cli2.jsonc

@@ -272,7 +272,10 @@
 		},
 		
 		// MD058 - Tables should be surrounded by blank lines
-		"MD058" : true
+		"MD058" : true,
+
+		// MD059 - Link text should be descriptive
+		"MD059" : false
 
 	}
-}
+}