diff --git a/.github/workflows/check-spelling.yml b/.github/workflows/check-spelling.yml index 96cfc9bc8a12..37f7fbe1b82f 100644 --- a/.github/workflows/check-spelling.yml +++ b/.github/workflows/check-spelling.yml @@ -16,7 +16,7 @@ jobs: content/**/*.md layouts/**/*.md data/**/* - !data/registry + !data/registry/**/* config: .vscode/cspell.json dict-check: diff --git a/.markdownlint.json b/.markdownlint.json index b78e26323b04..264ab690cc10 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -1,27 +1,28 @@ { - "no-inline-html": false, - "no-emphasis-as-header": false, - "no-trailing-punctuation": false, - "fenced-code-language": false, - "comment": "Disables rules that may conflict with Prettier", + "_comment": "Disables rules that may conflict with Prettier", "blanks-around-fences": false, "blanks-around-headings": false, "blanks-around-lists": false, "code-fence-style": false, "emphasis-style": false, + "fenced-code-language": false, "heading-start-left": false, "hr-style": false, "line-length": false, + "link-fragments": false, "list-indent": false, "list-marker-space": false, "no-blanks-blockquote": false, + "no-emphasis-as-header": false, "no-hard-tabs": false, + "no-inline-html": false, "no-missing-space-atx": false, "no-missing-space-closed-atx": false, "no-multiple-blanks": false, "no-multiple-space-atx": false, "no-multiple-space-blockquote": false, "no-multiple-space-closed-atx": false, + "no-trailing-punctuation": false, "no-trailing-spaces": false, "ol-prefix": false, "strong-style": false, diff --git a/package.json b/package.json index 68c6be4a83c5..fc73720ab1a0 100644 --- a/package.json +++ b/package.json @@ -69,7 +69,8 @@ "serve:hugo": "npm run _serve:hugo", "serve:netlify": "npm run _serve:netlify", "serve": "npm run serve:hugo", - "test": "run-s check:*", + "test": "check", + "test+": "run-s check fix:dict fix:filenames", "update:pkg:docsy-dep": "npm install --save-dev autoprefixer@latest postcss-cli@latest", "update:pkg:hugo": "npm install --save-dev --save-exact hugo-extended@latest", "update:pkg:hugo+": "npm run update:pkg:hugo && npm run update:pkg:docsy-dep",