-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #198 from commitd/beta
Beta
- Loading branch information
Showing
488 changed files
with
123,528 additions
and
44,143 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
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,40 @@ | ||
{ | ||
"name": "Node.js", | ||
"name": "committed-component-devcontainer", | ||
"runArgs": ["--init", "--privileged"], | ||
"overrideCommand": false, | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
"args": { | ||
"VARIANT": "14" | ||
} | ||
}, | ||
"settings": { | ||
"terminal.integrated.shell.linux": "/bin/bash" | ||
// Default to ZSH | ||
"terminal.integrated.shell.linux": "/bin/bash", | ||
"terminal.integrated.shell.osx": "/usr/bin/zsh", | ||
// Setup formatting to save with prettier | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
// Look throughout the project to auto set up eslint | ||
"eslint.workingDirectories": [ | ||
{ | ||
"mode": "auto" | ||
} | ||
], | ||
// Our eslint can be very heavy, so we perform it on save not on type | ||
"eslint.run": "onSave", | ||
// Ignore uncommon words | ||
"cSpell.userWords": ["commitd"], | ||
// Prefer relative imports | ||
"typescript.preferences.importModuleSpecifier": "relative" | ||
}, | ||
"extensions": [ | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode", | ||
"github.vscode-pull-request-github", | ||
"ms-vsliveshare.vsliveshare", | ||
"eamodio.gitlens", | ||
"streetsidesoftware.code-spell-checker", | ||
"ryanluker.vscode-coverage-gutters" | ||
"streetsidesoftware.code-spell-checker" | ||
], | ||
"postCreateCommand": "yarn install", | ||
"remoteUser": "node" | ||
} |
Oops, something went wrong.