Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
.cache-loader
/build

# Astro
.astro
dist

# npm assets
node_modules/
package-lock.json
Expand Down
4 changes: 2 additions & 2 deletions docs/versioning-documentation.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
title: prettier-ignore
title: Doc Versioning with Hugo & Netlify
# prettier-ignore
cSpell:ignore: Batard Brubaker Pursley velero fullversion githubbranch docsbranch Tanzu Rosland Horgan Takahashi
---

# Technical Documentation Versioning with Hugo & Netlify
# Doc Versioning with Hugo & Netlify

Technical Documents Versioning is an intersection of:

Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
"_check:format:any": "npx prettier --check --ignore-path ''",
"_check:format:delta": "npm run _check:format:any -- $(npm run -s _list:git:delta)",
"_check:format": "npx prettier --check .",
"_check:links": "make --keep-going check-links",
"_check:links-md": "bash -c 'for f in *.md `find analyses -name \"*.md\"`; do npx markdown-link-check --config .markdown-link-check.json -p -v $f || exit 1; done'",
"_check:links:internal": "npm run _check:links -- HTMLTEST_ARGS='--skip-external'",
"_check:links": "make --keep-going check-links",
"_check:markdown:all": "npm run -s _list:check:md | xargs -I {} -P 4 npx -p markdownlint-cli markdownlint -c .markdownlint.yaml {}",
"_check:markdown:delta": "npm run -s _list:git:delta | xargs -I {} npx -p markdownlint-cli markdownlint -c .markdownlint.yaml {}",
"_check:markdown:1": "npx -p markdownlint-cli markdownlint -c .markdownlint.yaml",
Expand Down Expand Up @@ -65,7 +66,7 @@
"typescript": "~5.8.3"
},
"private": true,
"spelling": "cSpell:ignore ACMR loglevel pkgs -",
"spelling": "cSpell:ignore ACMR HTMLTEST loglevel pkgs -",
"prettier": {
"proseWrap": "always",
"singleQuote": true
Expand Down