-
Notifications
You must be signed in to change notification settings - Fork 6
chore: check .md files with markdownlint-cli #1803
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
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1803 +/- ##
=======================================
Coverage 87.04% 87.04%
=======================================
Files 68 68
Lines 2579 2579
Branches 561 561
=======================================
Hits 2245 2245
Misses 298 298
Partials 36 36 🚀 New features to boost your workflow:
|
0af8a3b
to
83b51e1
Compare
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
32eb7a8
to
f9ab5ff
Compare
ba87e2d
to
eb6e7c0
Compare
eb6e7c0
to
04f4f36
Compare
## Description DOM was introduced to our tsconfig as some point which was a mistake. Our docs indicate that the _only_ reason to use DOM would be to bring in the web assembly types into a Pepr module. This PR removes DOM and updates some error messages that were not correct because they were looking for variables in the DOM types. This should unblock #1803 ## Related Issue Fixes # <!-- or --> Relates to # ## Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [x] Other (security config, docs update, etc) ## Checklist before merging - [x] Unit, [Journey](https://github.com/defenseunicorns/pepr/tree/main/journey), [E2E Tests](https://github.com/defenseunicorns/pepr-excellent-examples), [docs](https://github.com/defenseunicorns/pepr/tree/main/docs), [adr](https://github.com/defenseunicorns/pepr/tree/main/adr) added or updated as needed - [x] [Contributor Guide Steps](https://docs.pepr.dev/main/contribute/#submitting-a-pull-request) followed Signed-off-by: Case Wylie <[email protected]>
Use of
As a workaround, we could remove |
Since this is only a dev-tool that we do not need to distribute, we could use |
Description
While working on #1776, I noticed that we do not use a markdown linter. We should lint our markdown code since it's used to create user-facing documentation. This PR adds
markdownlint-cli
as a project dependency and configures.md
linting upon commit.Related Issue
Fixes #2120
Relates to #1776
Type of change
Checklist before merging