-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdevcontainer.json
More file actions
68 lines (68 loc) · 2.76 KB
/
devcontainer.json
File metadata and controls
68 lines (68 loc) · 2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "project-dev",
"dockerComposeFile": ["docker-compose.yml"],
"service": "vscode",
"runServices": ["vscode"],
"shutdownAction": "stopCompose",
"postCreateCommand": "source ~/.windows.sh",
"workspaceFolder": "/workspace",
// "overrideCommand": "",
"extensions": [
"dbaeumer.vscode-eslint", // ESLint
"esbenp.prettier-vscode", // Prettier code formatter
"bierner.color-info", // JSX and CSS color information
"jpoissonnier.vscode-styled-components", // Styled components
"visualstudioexptteam.vscodeintellicode", // AI-assisted development
"eg2.vscode-npm-script", // NPM support for VS code
"christian-kohler.npm-intellisense", // Autocompletes npm modules in import statements
"cssho.vscode-svgviewer", // SVG viewer
"eamodio.gitlens", // IDE Git information
"ms-azuretools.vscode-docker", // Docker integration and linting
"shardulm94.trailing-spaces", // Show trailing spaces
"davidanson.vscode-markdownlint",
"IBM.output-colorizer", // Colorize your output/test logs
"Gruntfuggly.todo-tree", // Highlights TODO comments
"bierner.emojisense", // Emoji sense for markdown
"stkb.rewrap", // rewrap comments after n characters on one line
"vscode-icons-team.vscode-icons", // Better file extension icons
"github.vscode-pull-request-github", // Github interaction
// "JakeWilson.vscode-cdnjs", // Search and embed libraries from cdnjs.com
// "alefragnani.Bookmarks",
// "quicktype.quicktype", // Paste JSON as code
// "spikespaz.vscode-smoothtype", // smooth cursor animation
],
"settings": {
"files.eol": "\n",
"editor.tabSize": 2,
"remote.extensionKind": {
"ms-azuretools.vscode-docker": "workspace"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"editor.formatOnSave": true,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false
},
"prettier-eslint.eslintIntegration": true
}
}