Skip to content

Commit

Permalink
chore: add editorconfig (#79)
Browse files Browse the repository at this point in the history
resolves #78
  • Loading branch information
HerrNaN authored Sep 22, 2024
1 parent 560cc7d commit 757dab0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
21 changes: 6 additions & 15 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,19 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/alpine
{
"name": "Alpine",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/base:alpine-3.18",
// Features to add to the dev container. More info: https://containers.dev/features.
"name": "Sediment",
"image": "mcr.microsoft.com/devcontainers/base",
"features": {
"ghcr.io/guiyomh/features/just:0": {}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "uname -a",
// Configure tool-specific properties.
"customizations": {
"files.associations": {
"*.just": "just"
},
"vscode": {
"extensions": [
"kokakiwi.vscode-just"
"kokakiwi.vscode-just",
"github.vscode-github-actions",
"EditorConfig.EditorConfig"
]
}
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
}
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# EditorConfig is awesome: https://editorconfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

0 comments on commit 757dab0

Please sign in to comment.