forked from Lovygoogle/devcontainers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.devcontainer.json
110 lines (110 loc) · 2.82 KB
/
.devcontainer.json
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "PHPNODE",
"dockerComposeFile": "docker-compose.yml",
"service": "dev",
"workspaceFolder": "/projects/workspace",
"shutdownAction": "stopCompose",
"settings": {
"attrsSorter.order": [
"is",
"v-for",
"v-if",
"v-else-if",
"v-else",
"v-show",
"v-cloak",
"v-once",
"v-pre",
"id",
"ref",
"key",
"v-slot",
"v-slot.+",
"#.*",
"slot",
"v-model",
"v-model.+",
"v-bind",
"v-bind.+",
":.+",
"v-text",
"v-text.+",
"v-html",
"v-html.+",
"class",
"v-on.+",
"@.+",
"name",
"data-.+",
"ng-.+",
"src",
"for",
"type",
"href",
"values",
"title",
"alt",
"role",
"aria-.+",
"$unknown$"
],
"css.validate": false,
"editor.formatOnPaste": true,
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll": false
},
"less.validate": false,
"php.suggest.basic": false,
"vetur.format.defaultFormatter.html": "prettyhtml",
"vetur.format.defaultFormatter.js": "prettier-eslint",
"scss.validate": false,
"stylelint.validate": [
"css",
"html",
"markdown",
"postcss",
"sass",
"scss",
"xml",
"xsl"
],
"terminal.integrated.defaultProfile.linux": "bash (login)",
"terminal.integrated.profiles.linux": {
"bash (login)": {
"path": "bash",
"args": ["-l"],
"icon": "terminal-ubuntu"
}
},
"todohighlight.isEnable": true,
"todohighlight.include": [
"**/*.js",
"**/*.jsx",
"**/*.ts",
"**/*.tsx",
"**/*.html",
"**/*.php",
"**/*.css",
"**/*.sass",
"**/*.scss",
"**/*.vue"
]
},
"extensions": [
"EditorConfig.EditorConfig",
"amiralizadeh9480.laravel-extra-intellisense",
"bmewburn.vscode-intelephense-client",
"calebporzio.better-phpunit",
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"esbenp.prettier-vscode",
"felixfbecker.php-debug",
"formulahendry.auto-close-tag",
"formulahendry.auto-rename-tag",
"octref.vetur",
"ryannaddy.laravel-artisan",
"stylelint.vscode-stylelint",
"wayou.vscode-todo-highlight"
]
}