-
Notifications
You must be signed in to change notification settings - Fork 759
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ea212dc
commit 4f702ce
Showing
109 changed files
with
1,234 additions
and
972 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,9 @@ | ||
{ | ||
"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 | ||
} |
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,24 @@ | ||
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' | ||
|
||
- bash: npm install -g markdownlint-cli | ||
displayName: Install markdownlint-cli | ||
|
||
- bash: markdownlint -c ./build/.markdownlint.json "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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# PLACEHOLDER | ||
|
||
TODO: Add .NET projects to the *src* folder and run `docfx` to generate **REAL** *API Documentation*! |
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.