-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix docs * add markdown action * use different action * change linter * add checkout * change globs * change wildcard * Aktualisieren von markdown_v3.yml * fix ignore * comment ignore * change version * use master * new action used for linting * Fix config * Remove ignore * Ignore docstring dir * ignore GitHub * Aktualisieren von markdown_v3.yml * use dot true * Aktualisieren von markdown_v3.yml * Use new action * Fix continue-on-error * Remove unnecessary code * Add markdownlint config * Rename . markdownlint-cli2.yaml to .markdownlint-cli2.yaml * Use config file * Simplify globs * Use globs and ignore in config file * Ignore $ errors * Ignore src and .github * Use only config file * Fix general glob * Ignore inline html * Disable MD010 * Fix language * dont warn trailing punctuation * fix warnings * fix a warning * reduce ignore * fix warnings * fail check, if markdownlint fails * add runner script and hook * Update documentation/builders/components/power/onoff-shim.md Co-authored-by: Alvin Schiller <[email protected]> * Update playlists-livestreams-podcasts.md * add documentation for documentation with md * get rid of docker * fix comments * incorporate comments * Update documentation/developers/documentation.md Co-authored-by: Alvin Schiller <[email protected]> * check, if cmd does not exisr --------- Co-authored-by: Alvin Schiller <[email protected]>
- Loading branch information
1 parent
2b5ef6e
commit c3b622c
Showing
29 changed files
with
492 additions
and
93 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
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,28 @@ | ||
name: Markdown Linting | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'future3/**' | ||
paths: | ||
- '**.md' | ||
pull_request: | ||
branches: | ||
- 'future3/**' | ||
paths: | ||
- '**.md' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Linting markdown | ||
uses: DavidAnson/markdownlint-cli2-action@v15 | ||
with: | ||
config: .markdownlint-cli2.yaml | ||
#continue-on-error: true |
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,52 @@ | ||
# | ||
# markdownlint-cli2 configuration, see https://github.com/DavidAnson/markdownlint-cli2?tab=readme-ov-file#configuration | ||
# | ||
|
||
# rules, see https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md | ||
config: | ||
line-length: false | ||
# ignore dollar signs | ||
commands-show-output: false | ||
no-trailing-punctuation: false | ||
|
||
# Include a custom rule package | ||
#customRules: | ||
# - markdownlint-rule-titlecase | ||
|
||
# Fix no fixable errors | ||
fix: false | ||
|
||
# Define a custom front matter pattern | ||
#frontMatter: "<head>[^]*<\/head>" | ||
|
||
# Define glob expressions to use (only valid at root) | ||
globs: | ||
- "**.md" | ||
|
||
# Define glob expressions to ignore | ||
ignores: | ||
- "documentation/developers/docstring/*" | ||
- "src/**" | ||
|
||
# Use a plugin to recognize math | ||
#markdownItPlugins: | ||
# - | ||
# - "@iktakahiro/markdown-it-katex" | ||
|
||
# Additional paths to resolve module locations from | ||
#modulePaths: | ||
# - "./modules" | ||
|
||
# Enable inline config comments | ||
noInlineConfig: false | ||
|
||
# Disable progress on stdout (only valid at root) | ||
noProgress: true | ||
|
||
# Use a specific formatter (only valid at root) | ||
#outputFormatters: | ||
# - | ||
# - markdownlint-cli2-formatter-default | ||
|
||
# Show found files on stdout (only valid at root) | ||
showFound: true |
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
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.