Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/markdown_linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request: {}
# Scan mainline branches and report all findings:
push:
branches: ["main"]
branches: ["master", "main"]

jobs:
markdown-lint-check:
Expand All @@ -19,5 +19,5 @@ jobs:
uses: nosborn/[email protected]
with:
files: './1.0*'
config_file: ".markdownlint.jsonc"
config_file: ".markdownlint.json"
ignore_files: "tools, templates, images"
62 changes: 62 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"//comment": "https://github.com/DavidAnson/markdownlint/blob/main/.markdownlint.json",
"blanks-around-fences": false,
"blanks-around-headings": false,
"blanks-around-lists": false,
"code-block-style": {
"style": "fenced"
},
"code-fence-style": {
"style": "backtick"
},
"commands-show-output": false,
"emphasis-style": {
"style": "asterisk"
},
"extended-ascii": {
"ascii-only": true
},
"fenced-code-language": false,
"first-line-heading": false,
"heading-increment": false,
"heading-style": false,
"hr-style": {
"style": "---"
},
"line-length": false,
"link-image-style": {
"collapsed": false,
"shortcut": false,
"url_inline": false
},
"no-bare-urls": false,
"no-duplicate-heading": {
"siblings_only": true
},
"no-multiple-blanks": false,
"no-trailing-punctuation": false,
"ol-prefix": {
"style": "ordered"
},
"proper-names": {
"code_blocks": false,
"names": [
"Cake.Markdownlint",
"CommonMark",
"JavaScript",
"Markdown",
"markdown-it",
"markdownlint",
"Node.js"
]
},
"reference-links-images": {
"shortcut_syntax": true
},
"single-title": false,
"single-trailing-newline": false,
"strong-style": {
"style": "asterisk"
},
"ul-style": false
}
19 changes: 0 additions & 19 deletions .markdownlint.jsonc

This file was deleted.