Skip to content

Commit

Permalink
Change which extensions are installed.
Browse files Browse the repository at this point in the history
* todo+ --> Todo Tree
* add git history
* remove playwright, live server, dotenv
  • Loading branch information
comnori committed Dec 5, 2023
1 parent 00226c7 commit f9456ba
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 33 deletions.
71 changes: 39 additions & 32 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
"Oh My Zsh Installer for Docker": "bash ${containerWorkspaceFolder}/.devcontainer/scripts/zsh-in-docker.sh -t jonathan -p git -p ssh-agent -p https://github.com/zsh-users/zsh-autosuggestions -p https://github.com/zsh-users/zsh-completions",
"Disable yarn telemetory": "yarn config set --home enableTelemetry 0"
},
"forwardPorts": [3000],
"forwardPorts": [
3000
],
"portsAttributes": {
"3000": {
"label": "Application port"
Expand All @@ -34,33 +36,32 @@
"customizations": {
"vscode": {
"extensions": [
"aaron-bond.better-comments",
"chrisbibby.hide-node-modules",
"christian-kohler.npm-intellisense",
"CS50.extension-uninstaller",
"dbaeumer.vscode-eslint",
"dotenv.dotenv-vscode",
"eamodio.gitlens",
"EditorConfig.EditorConfig",
"esbenp.prettier-vscode",
"fabiospampinato.vscode-todo-plus",
"fengzhu.css-module-intellisense",
"formulahendry.auto-rename-tag",
"liamhammett.inline-parameters",
"lokalise.i18n-ally",
"meganrogge.template-string-converter",
"mhutchie.git-graph",
"mikestead.dotenv",
"ms-playwright.playwright",
"ms-vscode.live-server",
"oderwat.indent-rainbow",
"PKief.material-icon-theme",
"SonarSource.sonarlint-vscode",
"usernamehw.errorlens",
"zhuangtongfa.material-theme",
"ZixuanChen.vitest-explorer",
"arcanis.vscode-zipfs"
],
"aaron-bond.better-comments",
"chrisbibby.hide-node-modules",
"christian-kohler.npm-intellisense",
"CS50.extension-uninstaller",
"dbaeumer.vscode-eslint",
"dotenv.dotenv-vscode",
"eamodio.gitlens",
"EditorConfig.EditorConfig",
"esbenp.prettier-vscode",
"Gruntfuggly.todo-tree",
"fengzhu.css-module-intellisense",
"formulahendry.auto-rename-tag",
"liamhammett.inline-parameters",
"lokalise.i18n-ally",
"meganrogge.template-string-converter",
"mhutchie.git-graph",
"donjayamanne.githistory",
"ms-playwright.playwright",
"oderwat.indent-rainbow",
"PKief.material-icon-theme",
"SonarSource.sonarlint-vscode",
"usernamehw.errorlens",
"zhuangtongfa.material-theme",
"ZixuanChen.vitest-explorer",
"arcanis.vscode-zipfs"
],
"settings": {
"editor.codeActionsOnSave": {
"source.fixAll": true,
Expand All @@ -70,7 +71,9 @@
"editor.foldingImportsByDefault": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"extension-uninstaller.uninstall": ["vscjava.vscode-java-pack"],
"extension-uninstaller.uninstall": [
"vscjava.vscode-java-pack"
],
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
Expand All @@ -82,9 +85,13 @@
},
"i18n-ally.displayLanguage": "ko",
"i18n-ally.editor.preferEditor": true,
"i18n-ally.enabledFrameworks": ["react-i18next"],
"i18n-ally.enabledFrameworks": [
"react-i18next"
],
"i18n-ally.keystyle": "nested",
"i18n-ally.localesPaths": ["./src/config/i18n"],
"i18n-ally.localesPaths": [
"./src/config/i18n"
],
"i18n-ally.sourceLanguage": "en",
"terminal.integrated.defaultProfile.linux": "zsh",
"todo.embedded.exclude": [
Expand Down Expand Up @@ -115,4 +122,4 @@
}
}
}
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vite-template-awesome-soho",
"description": "React template in javascript/Typesciprt base using vite",
"version": "1.0.1",
"version": "1.0.2",
"homepage": "./vite-template-awesome-soho",
"keywords": [
"vite",
Expand Down

0 comments on commit f9456ba

Please sign in to comment.