Skip to content

Commit

Permalink
configure submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Mar 4, 2024
1 parent a2c8eae commit edad35f
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 13 deletions.
31 changes: 18 additions & 13 deletions .devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,28 @@
{
"name": "package-javascript",
"customizations": {
"vscode": {
"extensions": [
"visualstudioexptteam.vscodeintellicode",
"github.vscode-pull-request-github",
"redhat.vscode-yaml",
"davidanson.vscode-markdownlint",
"bierner.markdown-mermaid",
"streetsidesoftware.code-spell-checker",
"dbaeumer.vscode-eslint"
]
}
},
"dockerComposeFile": [
"../docker-compose.yml"
],
"service": "base-service",
"shutdownAction": "none",
"workspaceFolder": "/workspace/codeforlife-package-javascript",
"remoteUser": "root",
"postCreateCommand": "yarn install",
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "18"
}
},
"customizations": {
"vscode": {
//TODO: Specify preferred settings and extensions once defined
"settings": {},
"extensions": []
}
}
"name": "package-javascript",
"remoteUser": "root",
"service": "base-service",
"shutdownAction": "none",
"workspaceFolder": "/workspace/codeforlife-package-javascript"
}
16 changes: 16 additions & 0 deletions .vscode/codeforlife.code-snippets
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"javascript.module.doccomment": {
"body": [
"/**",
" * \u00a9 Ocado Group",
" * Created on $CURRENT_DATE/$CURRENT_MONTH/$CURRENT_YEAR at $CURRENT_HOUR:$CURRENT_MINUTE:$CURRENT_SECOND($CURRENT_TIMEZONE_OFFSET).",
" *",
" * ${1:__description__}",
" */"
],
"prefix": [
"/"
],
"scope": "javascript,typescript,javascriptreact,typescriptreact"
}
}
21 changes: 21 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"[md]": {
"editor.tabSize": 4
},
"cSpell.words": [
"codeforlife",
"klass",
"ocado",
"kurono",
"pipenv"
],
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"editor.formatOnSave": true,
"editor.rulers": [
80
],
"editor.tabSize": 2,
"typescript.preferences.quoteStyle": "single"
}
13 changes: 13 additions & 0 deletions codeforlife.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"folders": [
{
"name": "package-javascript",
"path": "."
}
],
"settings": {
"workbench.colorCustomizations": {
"editorRuler.foreground": "#008000"
}
}
}

0 comments on commit edad35f

Please sign in to comment.