-
Notifications
You must be signed in to change notification settings - Fork 0
Standardize ASCII and .editorconfig line endings repo-wide; tighten doc conventions #114
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
e51342a
Tighten doc conventions and normalize line endings
ptr727 4444886
Extend ASCII convention repo-wide; refine signing and EOL rules
ptr727 fd7e8b2
Fix mangled uv-pin comment and soften the EOL-normalization rule
ptr727 7e50c1d
Align secrets-store path wording to 'GitHub project Settings'
ptr727 439b175
Restore the Quantitative Claims heading in AGENTS.md
ptr727 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,58 +1,58 @@ | ||
| { | ||
| "name": "ProjectTemplate (.NET)", | ||
| "image": "mcr.microsoft.com/devcontainers/dotnet:1-10.0", | ||
|
|
||
| "features": { | ||
| "ghcr.io/devcontainers/features/common-utils:2": {}, | ||
| "ghcr.io/devcontainers/features/github-cli:1": {} | ||
| }, | ||
|
|
||
| "mounts": [ | ||
| { | ||
| "source": "${localEnv:HOME}${localEnv:USERPROFILE}/.ssh/id_ed25519.pub", | ||
| "target": "/home/vscode/.ssh/id_ed25519.pub", | ||
| "type": "bind", | ||
| "readonly": true | ||
| }, | ||
| { | ||
| "source": "${localEnv:HOME}${localEnv:USERPROFILE}/.config/git/allowed_signers", | ||
| "target": "/home/vscode/.config/git/allowed_signers", | ||
| "type": "bind", | ||
| "readonly": true | ||
| }, | ||
| { | ||
| "source": "${localEnv:HOME}${localEnv:USERPROFILE}/.config/gh", | ||
| "target": "/home/vscode/.config/gh", | ||
| "type": "bind", | ||
| "readonly": false | ||
| } | ||
| ], | ||
|
|
||
| "remoteUser": "vscode", | ||
|
|
||
| // The bind-mount on macOS hosts surfaces /home/vscode/.ssh as root-owned; | ||
| // chown it back so writes from inside the container (known_hosts updates | ||
| // by gh / git) land cleanly. Idempotent on Linux/WSL2. | ||
| "onCreateCommand": "sudo install -d -m 700 -o vscode -g vscode /home/vscode/.ssh", | ||
|
|
||
| // Restore .NET local tools (csharpier, dotnet-outdated). No git hooks are | ||
| // installed by default — see README "Optional: enable git hooks locally". | ||
| "postCreateCommand": ".devcontainer/dotnet/post-create.sh", | ||
|
|
||
| "customizations": { | ||
| "vscode": { | ||
| // Mirror of `recommendations` in DotNet.code-workspace. | ||
| "extensions": [ | ||
| "csharpier.csharpier-vscode", | ||
| "davidanson.vscode-markdownlint", | ||
| "editorconfig.editorconfig", | ||
| "github.vscode-github-actions", | ||
| "gruntfuggly.todo-tree", | ||
| "ms-azuretools.vscode-docker", | ||
| "ms-dotnettools.csdevkit", | ||
| "streetsidesoftware.code-spell-checker", | ||
| "yzhang.markdown-all-in-one" | ||
| ] | ||
| } | ||
| } | ||
| } | ||
| { | ||
| "name": "ProjectTemplate (.NET)", | ||
| "image": "mcr.microsoft.com/devcontainers/dotnet:1-10.0", | ||
| "features": { | ||
| "ghcr.io/devcontainers/features/common-utils:2": {}, | ||
| "ghcr.io/devcontainers/features/github-cli:1": {} | ||
| }, | ||
| "mounts": [ | ||
| { | ||
| "source": "${localEnv:HOME}${localEnv:USERPROFILE}/.ssh/id_ed25519.pub", | ||
| "target": "/home/vscode/.ssh/id_ed25519.pub", | ||
| "type": "bind", | ||
| "readonly": true | ||
| }, | ||
| { | ||
| "source": "${localEnv:HOME}${localEnv:USERPROFILE}/.config/git/allowed_signers", | ||
| "target": "/home/vscode/.config/git/allowed_signers", | ||
| "type": "bind", | ||
| "readonly": true | ||
| }, | ||
| { | ||
| "source": "${localEnv:HOME}${localEnv:USERPROFILE}/.config/gh", | ||
| "target": "/home/vscode/.config/gh", | ||
| "type": "bind", | ||
| "readonly": false | ||
| } | ||
| ], | ||
| "remoteUser": "vscode", | ||
| // The bind-mount on macOS hosts surfaces /home/vscode/.ssh as root-owned; | ||
| // chown it back so writes from inside the container (known_hosts updates | ||
| // by gh / git) land cleanly. Idempotent on Linux/WSL2. | ||
| "onCreateCommand": "sudo install -d -m 700 -o vscode -g vscode /home/vscode/.ssh", | ||
| // Restore .NET local tools (csharpier, dotnet-outdated). No git hooks are | ||
| // installed by default - see README "Optional: enable git hooks locally". | ||
| "postCreateCommand": ".devcontainer/dotnet/post-create.sh", | ||
| "customizations": { | ||
| "vscode": { | ||
| // Mirror of `recommendations` in DotNet.code-workspace. | ||
| "extensions": [ | ||
| "csharpier.csharpier-vscode", | ||
| "davidanson.vscode-markdownlint", | ||
| "editorconfig.editorconfig", | ||
| "github.vscode-github-actions", | ||
| "gruntfuggly.todo-tree", | ||
| "ms-azuretools.vscode-docker", | ||
| "ms-dotnettools.csdevkit", | ||
| "streetsidesoftware.code-spell-checker", | ||
| "yzhang.markdown-all-in-one" | ||
| ] | ||
| } | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,58 +1,58 @@ | ||
| { | ||
| "name": "ProjectTemplate (Python)", | ||
| "image": "mcr.microsoft.com/devcontainers/python:1-3.14-bookworm", | ||
|
|
||
| "features": { | ||
| "ghcr.io/devcontainers/features/common-utils:2": {}, | ||
| "ghcr.io/devcontainers/features/github-cli:1": {} | ||
| }, | ||
|
|
||
| "mounts": [ | ||
| { | ||
| "source": "${localEnv:HOME}${localEnv:USERPROFILE}/.ssh/id_ed25519.pub", | ||
| "target": "/home/vscode/.ssh/id_ed25519.pub", | ||
| "type": "bind", | ||
| "readonly": true | ||
| }, | ||
| { | ||
| "source": "${localEnv:HOME}${localEnv:USERPROFILE}/.config/git/allowed_signers", | ||
| "target": "/home/vscode/.config/git/allowed_signers", | ||
| "type": "bind", | ||
| "readonly": true | ||
| }, | ||
| { | ||
| "source": "${localEnv:HOME}${localEnv:USERPROFILE}/.config/gh", | ||
| "target": "/home/vscode/.config/gh", | ||
| "type": "bind", | ||
| "readonly": false | ||
| } | ||
| ], | ||
|
|
||
| "remoteUser": "vscode", | ||
|
|
||
| // The bind-mount on macOS hosts surfaces /home/vscode/.ssh as root-owned; | ||
| // chown it back so writes from inside the container (known_hosts updates | ||
| // by gh / git) land cleanly. Idempotent on Linux/WSL2. | ||
| "onCreateCommand": "sudo install -d -m 700 -o vscode -g vscode /home/vscode/.ssh", | ||
|
|
||
| // Install pinned uv and pre-warm the PyPiLibrary venv. No git hooks are | ||
| // installed by default — see README "Optional: enable git hooks locally". | ||
| "postCreateCommand": ".devcontainer/python/post-create.sh", | ||
|
|
||
| "customizations": { | ||
| "vscode": { | ||
| // Mirror of `recommendations` in Python.code-workspace. | ||
| "extensions": [ | ||
| "charliermarsh.ruff", | ||
| "davidanson.vscode-markdownlint", | ||
| "editorconfig.editorconfig", | ||
| "github.vscode-github-actions", | ||
| "gruntfuggly.todo-tree", | ||
| "ms-azuretools.vscode-docker", | ||
| "ms-python.python", | ||
| "streetsidesoftware.code-spell-checker", | ||
| "yzhang.markdown-all-in-one" | ||
| ] | ||
| } | ||
| } | ||
| } | ||
| { | ||
| "name": "ProjectTemplate (Python)", | ||
| "image": "mcr.microsoft.com/devcontainers/python:1-3.14-bookworm", | ||
| "features": { | ||
| "ghcr.io/devcontainers/features/common-utils:2": {}, | ||
| "ghcr.io/devcontainers/features/github-cli:1": {} | ||
| }, | ||
| "mounts": [ | ||
| { | ||
| "source": "${localEnv:HOME}${localEnv:USERPROFILE}/.ssh/id_ed25519.pub", | ||
| "target": "/home/vscode/.ssh/id_ed25519.pub", | ||
| "type": "bind", | ||
| "readonly": true | ||
| }, | ||
| { | ||
| "source": "${localEnv:HOME}${localEnv:USERPROFILE}/.config/git/allowed_signers", | ||
| "target": "/home/vscode/.config/git/allowed_signers", | ||
| "type": "bind", | ||
| "readonly": true | ||
| }, | ||
| { | ||
| "source": "${localEnv:HOME}${localEnv:USERPROFILE}/.config/gh", | ||
| "target": "/home/vscode/.config/gh", | ||
| "type": "bind", | ||
| "readonly": false | ||
| } | ||
| ], | ||
| "remoteUser": "vscode", | ||
| // The bind-mount on macOS hosts surfaces /home/vscode/.ssh as root-owned; | ||
| // chown it back so writes from inside the container (known_hosts updates | ||
| // by gh / git) land cleanly. Idempotent on Linux/WSL2. | ||
| "onCreateCommand": "sudo install -d -m 700 -o vscode -g vscode /home/vscode/.ssh", | ||
| // Install pinned uv and pre-warm the PyPiLibrary venv. No git hooks are | ||
| // installed by default - see README "Optional: enable git hooks locally". | ||
| "postCreateCommand": ".devcontainer/python/post-create.sh", | ||
|
ptr727 marked this conversation as resolved.
|
||
| "customizations": { | ||
| "vscode": { | ||
| // Mirror of `recommendations` in Python.code-workspace. | ||
| "extensions": [ | ||
| "charliermarsh.ruff", | ||
| "davidanson.vscode-markdownlint", | ||
| "editorconfig.editorconfig", | ||
| "github.vscode-github-actions", | ||
| "gruntfuggly.todo-tree", | ||
| "ms-azuretools.vscode-docker", | ||
| "ms-python.python", | ||
| "streetsidesoftware.code-spell-checker", | ||
| "yzhang.markdown-all-in-one" | ||
| ] | ||
| } | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.