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
v1.6
  • Loading branch information
yorek committed Mar 19, 2024
commit a096b617e34ce7b67c9e53d4e6d9fe441c088c72
8 changes: 6 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"image": "mcr.microsoft.com/devcontainers/dotnet:7.0",
"image": "mcr.microsoft.com/devcontainers/dotnet:7.0-bookworm",
"features": {
"ghcr.io/devcontainers-contrib/features/npm-package:1": {
"package": "typescript",
Expand All @@ -25,9 +25,13 @@
"ms-azuretools.vscode-azurefunctions",
"ms-vscode.azure-account",
"ms-azuretools.vscode-azureresourcegroups",
"ms-dotnettools.csdevkit",
"ms-dotnettools.csharp",
"humao.rest-client",
"github.vscode-github-actions",
"Vue.volar"
"Vue.volar",
"ms-dotnettools.csdevkit",
"ms-dotnettools.csharp"
]
}
}
Expand Down
13 changes: 13 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Thanks to: https://rehansaeed.com/gitattributes-best-practices/

# Set default behavior to automatically normalize line endings.
* text=auto

# Force batch scripts to always use CRLF line endings so that if a repo is accessed
# in Windows via a file share from Linux, the scripts will work.
*.{cmd,[cC][mM][dD]} text eol=crlf
*.{bat,[bB][aA][tT]} text eol=crlf

# Force bash scripts to always use LF line endings so that if a repo is accessed
# in Unix via a file share from Windows, the scripts will work.
*.sh text eol=lf
Loading