-
Notifications
You must be signed in to change notification settings - Fork 602
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add .editorconfig * address comment * Update .editorconfig Co-authored-by: eitsupi <[email protected]> --------- Co-authored-by: eitsupi <[email protected]>
- Loading branch information
1 parent
35465f7
commit f7637fc
Showing
3 changed files
with
30 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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,23 +1,17 @@ | ||
{ | ||
"image": "mcr.microsoft.com/devcontainers/javascript-node:0-18", | ||
"features": { | ||
"ghcr.io/devcontainers/features/docker-in-docker:2": {}, | ||
"ghcr.io/devcontainers/features/azure-cli:1": {} | ||
}, | ||
"postCreateCommand": "npm install -g @devcontainers/cli", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"mads-hartmann.bash-ide-vscode", | ||
"dbaeumer.vscode-eslint" | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong. |
||
"dbaeumer.vscode-eslint", | ||
"EditorConfig.EditorConfig" | ||
] | ||
}, | ||
"codespaces": { | ||
"repositories": { | ||
"devcontainers/features": { | ||
"permissions": "write-all" | ||
} | ||
} | ||
} | ||
}, | ||
"features": { | ||
"ghcr.io/devcontainers/features/docker-in-docker:2": {}, | ||
"ghcr.io/devcontainers/features/azure-cli:1": {} | ||
}, | ||
"postCreateCommand": "npm install -g @devcontainers/cli" | ||
} | ||
} |
This file contains 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
root = true | ||
|
||
[*.json] | ||
indent_style = tab | ||
|
||
[Dockerfile] | ||
indent_style = spaces | ||
indent_size = 4 | ||
|
||
[*.{yml,yaml}] | ||
indent_style = spaces | ||
indent_size = 2 |
This file contains 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. | ||
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp | ||
|
||
// List of extensions which should be recommended for users of this workspace. | ||
"recommendations": [ | ||
// We recommend this extension for contributors to assist with the correct styling and formatting of files in this repo. | ||
"EditorConfig.EditorConfig", | ||
], | ||
} |
1 comment
on commit f7637fc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.vscode/extensions.json
bonjours