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
5 changes: 4 additions & 1 deletion .browserslistrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
defaults
> 0.1%
last 2 versions
Firefox ESR
not dead
maintained node versions
12 changes: 11 additions & 1 deletion .ecrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,17 @@
"IgnoreDefaults": true,
"SpacesAftertabs": false,
"NoColor": false,
"Exclude": ["pnpm-lock.yaml", ".markdownlint.jsonc", "LICENSE/"],
"Exclude": [
"js/vendor/",
"pnpm-lock.yaml",
".markdownlint.jsonc",
"LICENSE/",
"collections/_docs/code-of-conduct.md",
"collections/_docs/contributing.md",
"collections/_docs/security.md",
"collections/_docs/support.md",
"collections/_pages/vision.md"
],
"AllowedContentTypes": [],
"PassedFiles": [],
"Disable": {
Expand Down
13 changes: 12 additions & 1 deletion .markdownlint-cli2.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,18 @@
"globs": ["**.md"],

// Define glob expressions to ignore
"ignores": ["_site/", "node_modules/", "**/COPYING.md"],
"ignores": [
"_site/",
"node_modules/",
"**/COPYING.md",
// Generated by compile.siteifyHealthFiles from OpenINF/.github;
// fixes here are overwritten on the next build.
"collections/_docs/code-of-conduct.md",
"collections/_docs/contributing.md",
"collections/_docs/security.md",
"collections/_docs/support.md",
"collections/_pages/vision.md"
],

"markdownItPlugins": [
["markdown-it-task-lists"],
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/jod
lts/krypton
9 changes: 9 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,12 @@ node_modules/
vendor/
package.json
pnpm-lock.yaml

# Generated by compile.siteifyHealthFiles from the OpenINF/.github
# repository. Fixes applied here are overwritten on the next build; the
# source files are the place to change them.
collections/_docs/code-of-conduct.md
collections/_docs/contributing.md
collections/_docs/security.md
collections/_docs/support.md
collections/_pages/vision.md
9 changes: 9 additions & 0 deletions .remarkignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
.github/ISSUE_TEMPLATE/*.md
node_modules/
vendor/

# Generated by compile.siteifyHealthFiles from the OpenINF/.github
# repository. Fixes applied here are overwritten on the next build; the
# source files are the place to change them.
collections/_docs/code-of-conduct.md
collections/_docs/contributing.md
collections/_docs/security.md
collections/_docs/support.md
collections/_pages/vision.md
1 change: 0 additions & 1 deletion _includes/assets/img/sublime-theme/hamburger-primary.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion _includes/assets/img/sublime-theme/hamburger-secondary.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"!**/node_modules/",
"!**/package.json",
"!**/pnpm-lock.yaml",
"!**/assets/js/vendor/**"
"!**/assets/js/vendor"
]
},
"formatter": {
Expand Down
8 changes: 8 additions & 0 deletions build/tasks/format/format-md.mts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ const markdownFiles = await glob([
'!node_modules/',
'!**/COPYING.md',
'!_site/',
// Generated by compile.siteifyHealthFiles from the OpenINF/.github
// repository. Fixes applied here are overwritten on the next build; the
// source files are the place to change them.
'!collections/_docs/code-of-conduct.md',
'!collections/_docs/contributing.md',
'!collections/_docs/security.md',
'!collections/_docs/support.md',
'!collections/_pages/vision.md',
]);

let exitCode = 0;
Expand Down
8 changes: 8 additions & 0 deletions build/tasks/verify/verify-md.mts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ const markdownFiles = await glob([
'!node_modules/',
'!**/COPYING.md',
'!_site/',
// Generated by compile.siteifyHealthFiles from the OpenINF/.github
// repository. Fixes applied here are overwritten on the next build; the
// source files are the place to change them.
'!collections/_docs/code-of-conduct.md',
'!collections/_docs/contributing.md',
'!collections/_docs/security.md',
'!collections/_docs/support.md',
'!collections/_pages/vision.md',
]);

let exitCode = 0;
Expand Down
8 changes: 4 additions & 4 deletions collections/_docs/agent-forwarding.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ GitHub before any usage of the key to authenticate may occur.

If you don't already have an SSH key, you must generate a new one for
authentication. You can check for existing keys if you are unsure whether you
already have an SSH key. For more information, see "[Checking for existing
SSH keys][]".
already have an SSH key. For more information, see "[Checking for existing SSH
keys][]".

If you don't want to reenter your passphrase every time you use your SSH key,
you can add your key to the SSH agent, which will manage your SSH keys and
Expand Down Expand Up @@ -147,8 +147,8 @@ keyring into the remote container gets done automatically by the extension.
:::excerpt{.quote} <!-- TODO(DerekNonGeneric): link to source of below -->

<abbr title="Secure Copy Protocol">[SCP]{#scp .dfn}</abbr> is a means of
securely transferring [computer files][] between a local [host][] and a remote host
or between two remote hosts. It is based on the [Secure Shell][] (SSH)
securely transferring [computer files][] between a local [host][] and a remote
host or between two remote hosts. It is based on the [Secure Shell][] (SSH)
protocol.[^1] "SCP" commonly refers to both the Secure Copy Protocol and the
program itself.[^2]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ modifications occur. An Experimental feature may require a command-line flag or
environment variable setting to enable it to help avoid surprises. Experimental
features may also emit a warning.

_Portion above cross-posted; derived of model: [Node.js Core Stability index][]._
_Portion above cross-posted; derived of model: [Node.js Core Stability
index][]._

<br /><br />

Expand Down
4 changes: 2 additions & 2 deletions package-scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ scripts:
buildStyles: tsx build/tasks/compile/build-styles.mts
siteifyHealthFiles: tsx build/tasks/compile/siteify-health-files.mts
verify:
all: for i in build/tasks/verify/*.mts; do tsx "$i"; done
all: 'rc=0; for i in build/tasks/verify/*.mts; do tsx "$i" || rc=1; done; exit $rc'
browserslist: tsx build/tasks/verify/verify-browserslist.mts
scss: tsx build/tasks/verify/verify-scss.mts
dockerfile: tsx build/tasks/verify/verify-dockerfile.mts
Expand All @@ -23,7 +23,7 @@ scripts:
validForSC: tsx build/tasks/verify/verify-valid-for-sc.mts
yaml: tsx build/tasks/verify/verify-yaml.mts
format:
all: for i in build/tasks/format/*.mts; do tsx "$i"; done
all: 'rc=0; for i in build/tasks/format/*.mts; do tsx "$i" || rc=1; done; exit $rc'
scss: tsx build/tasks/format/format-scss.mts
dockerfile: tsx build/tasks/format/format-dockerfile.mts
js: tsx build/tasks/format/format-js.mts
Expand Down