Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add markdown linting #2284

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
eefc0fb
fix docs
s-martin Mar 2, 2024
5fa1cd8
add markdown action
s-martin Mar 3, 2024
3a89137
use different action
s-martin Mar 3, 2024
26a8833
change linter
s-martin Mar 3, 2024
4ac2fef
add checkout
s-martin Mar 3, 2024
72061f5
change globs
s-martin Mar 3, 2024
6a6ba4b
change wildcard
s-martin Mar 3, 2024
40e0daf
Aktualisieren von markdown_v3.yml
s-martin Mar 6, 2024
cfba369
fix ignore
s-martin Mar 6, 2024
3c35885
comment ignore
s-martin Mar 6, 2024
b636beb
change version
s-martin Mar 6, 2024
d7cc895
use master
s-martin Mar 6, 2024
f8c2354
new action used for linting
s-martin Mar 6, 2024
c8a4091
Fix config
s-martin Mar 8, 2024
c465379
Remove ignore
s-martin Mar 8, 2024
4c80ad0
Ignore docstring dir
s-martin Mar 8, 2024
619f61d
ignore GitHub
s-martin Mar 8, 2024
f86b9f3
Aktualisieren von markdown_v3.yml
s-martin Mar 8, 2024
9daecd0
use dot true
s-martin Mar 8, 2024
b2299f7
Aktualisieren von markdown_v3.yml
s-martin Mar 8, 2024
1d3526a
Use new action
s-martin Mar 16, 2024
2909970
Fix continue-on-error
s-martin Mar 16, 2024
5b12457
Remove unnecessary code
s-martin Mar 16, 2024
3db414e
Add markdownlint config
s-martin Mar 16, 2024
f350c5f
Rename . markdownlint-cli2.yaml to .markdownlint-cli2.yaml
s-martin Mar 16, 2024
d5863d0
Use config file
s-martin Mar 16, 2024
ca3cc67
Simplify globs
s-martin Mar 17, 2024
932aa0f
Use globs and ignore in config file
s-martin Mar 17, 2024
012867f
Ignore $ errors
s-martin Mar 17, 2024
4f07a15
Ignore src and .github
s-martin Mar 17, 2024
e7f9ee8
Use only config file
s-martin Mar 17, 2024
49376f1
Fix general glob
s-martin Mar 17, 2024
8d62a9b
Ignore inline html
s-martin Mar 17, 2024
501dc8c
Disable MD010
s-martin Mar 17, 2024
de411e9
Fix language
s-martin Mar 17, 2024
86a0cb4
dont warn trailing punctuation
s-martin Mar 17, 2024
1b9c8dc
fix warnings
s-martin Mar 17, 2024
87c34e8
fix a warning
s-martin Mar 17, 2024
839b04e
reduce ignore
s-martin Mar 17, 2024
2af901f
fix warnings
s-martin Mar 17, 2024
5b2f0be
fail check, if markdownlint fails
s-martin Mar 17, 2024
e1c7796
add runner script and hook
s-martin Mar 17, 2024
403d9c9
Update documentation/builders/components/power/onoff-shim.md
s-martin Mar 18, 2024
fe13663
Update playlists-livestreams-podcasts.md
s-martin Mar 18, 2024
e86a7da
add documentation for documentation with md
s-martin Mar 19, 2024
93c98dc
get rid of docker
s-martin Mar 19, 2024
afd4865
fix comments
s-martin Mar 19, 2024
d5fd295
incorporate comments
s-martin Mar 20, 2024
cc73108
Update documentation/developers/documentation.md
s-martin Mar 20, 2024
c23b4b6
check, if cmd does not exisr
s-martin Mar 20, 2024
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
2 changes: 1 addition & 1 deletion run_markdownlint.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ PROJECT_ROOT="$SCRIPT_DIR"
cd "$PROJECT_ROOT" || { echo "Could not change directory"; exit 1; }

# Run markdownlint-cli2 (in a Docker container for convenience)
docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.12.1 --config .markdownlint-cli2.yaml "#node_modules"
./src/webapp/node_modules/.bin/markdownlint-cli2 --config .markdownlint-cli2.yaml "#node_modules"
211 changes: 211 additions & 0 deletions src/webapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions src/webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,8 @@
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"markdownlint-cli2": "^0.12.1"
}
}
Loading