Skip to content

Commit cc6a8c9

Browse files
Move collections.
1 parent ed1333d commit cc6a8c9

File tree

67 files changed

+96
-53
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+96
-53
lines changed

.devcontainer/devcontainer.json

+3-6
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,7 @@
1515
// Configure tool-specific properties.
1616
"customizations": {
1717
"codespaces": {
18-
"openFiles": [
19-
"README.md",
20-
".github/SECURITY.md",
21-
"docs/index.md"
22-
]
18+
"openFiles": ["README.md", ".github/SECURITY.md", "docs/index.md"]
2319
},
2420
"vscode": {
2521
// Set *default* container specific settings.json values on container create.
@@ -64,7 +60,8 @@
6460
"yzane.markdown-pdf",
6561
"yzhang.dictionary-completion",
6662
"yzhang.markdown-all-in-one",
67-
"joshx.workspace-terminals"
63+
"joshx.workspace-terminals",
64+
"takumii.markdowntable"
6865
]
6966
}
7067
},

docs/_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ description: >- # this means to ignore newlines until "baseurl:"
2525
baseurl: "/nhs-notify" # the subpath of your site, e.g. /blog
2626
url: "https://nhsdigital.github.io" # the base hostname & protocol for your site, e.g. http://example.com
2727

28-
collections_dir: _collections
28+
collections_dir: collections
2929

3030
collections:
3131
repos:

docs/_collections/_adrs/ADR-001_Use_git_hook_and_GitHub_action_to_check_the_editorconfig_compliance.md docs/collections/_adrs/ADR-001_Use_git_hook_and_GitHub_action_to_check_the_editorconfig_compliance.md

+7-10

docs/_collections/_adrs/ADR-003_Acceptable_use_of_GitHub_PAT_and_Apps_for_authN_and_authZ.md docs/collections/_adrs/ADR-003_Acceptable_use_of_GitHub_PAT_and_Apps_for_authN_and_authZ.md

+7-8

docs/_collections/_adrs/adr-004-github.md docs/collections/_adrs/adr-004-github.md

+33-1

docs/_collections/_adrs/adr-007-naming-conventions.md docs/collections/_adrs/adr-007-naming-conventions.md

-1

docs/_collections/_adrs/adrs-active.md docs/collections/_adrs/adrs-active.md

+1-2

docs/_collections/_adrs/ADR-nnn_Any_Decision_Record_Template.md docs/collections/_adrs/templates/ADR-nnn_Any_Decision_Record_Template.md

+26-22

nhs-notify.code-workspace

+18-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,22 @@
2929
"ruleset",
3030
"Stefaniuk"
3131
],
32-
"cSpell.language": "en-GB"
32+
"cSpell.language": "en-GB",
33+
"editor.wordWrap": "off",
34+
"editor.formatOnSave": true,
35+
"[markdown]": {
36+
"editor.wordWrap": "off",
37+
"editor.defaultFormatter": "esbenp.prettier-vscode"
38+
},
39+
"[jsonc]": {
40+
"editor.defaultFormatter": "esbenp.prettier-vscode"
41+
},
42+
"[html]": {
43+
"editor.defaultFormatter": "esbenp.prettier-vscode"
44+
},
45+
"[json]": {
46+
"editor.defaultFormatter": "esbenp.prettier-vscode"
47+
}
3348
},
3449
"extensions": {
3550
"recommendations": [
@@ -64,7 +79,8 @@
6479
"yzane.markdown-pdf",
6580
"yzhang.dictionary-completion",
6681
"yzhang.markdown-all-in-one",
67-
"joshx.workspace-terminals"
82+
"joshx.workspace-terminals",
83+
"takumii.markdowntable"
6884
],
6985
"unwantedRecommendations": []
7086
}

0 commit comments

Comments
 (0)