forked from unoplatform/uno
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request unoplatform#15026 from unoplatform/dev/agzi/Enable…
…MarkdownLinting docs: Enabling Markdown Linting
- Loading branch information
Showing
295 changed files
with
4,158 additions
and
3,502 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"default": true, | ||
"line-length": false, | ||
"commands-show-output": false, | ||
"no-bare-urls": false, | ||
"no-inline-html": false, | ||
"no-duplicate-heading": false, | ||
"no-emphasis-as-heading": false, | ||
// First line in a file should be a top-level heading - false positive for include files. | ||
"MD041": false, | ||
// Link fragments should be valid - false positive for docfx tabs | ||
"MD051": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
parameters: | ||
vmImage: '' | ||
|
||
jobs: | ||
- job: markdown_lint | ||
displayName: 'Markdown Linting Validation' | ||
|
||
pool: | ||
vmImage: ${{ parameters.vmImage }} | ||
|
||
steps: | ||
- checkout: self | ||
fetchDepth: 1 | ||
clean: true | ||
|
||
- task: NodeTool@0 | ||
inputs: | ||
versionSpec: '18.x' | ||
|
||
# Keep that version in sync with documentation at doc/README.md | ||
- bash: npm install -g markdownlint-cli@0.38.0 | ||
displayName: Install markdownlint-cli | ||
|
||
- bash: markdownlint "doc/**/*.md" | ||
displayName: Run Markdown Linter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.