-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpam.code-workspace
More file actions
43 lines (43 loc) · 1.3 KB
/
pam.code-workspace
File metadata and controls
43 lines (43 loc) · 1.3 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
{
"folders": [
{
"path": "spa"
}
],
"settings": {
"editor.minimap.enabled": false,
"editor.wordWrap": "off",
// Turns on auto format on save for all files types.
// This is also required to allow Prettier to auto format files on save.
"editor.formatOnSave": true,
"[html]": {
"editor.formatOnSave": false
},
// Turns it off for JavaScript since we use Prettier to auto format on save.
"javascript.format.enable": false,
"javascript.validate.enable": true,
// Required to allow auto format on save with Prettier + ESLint + Vetur.
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"prettier.eslintIntegration": true,
"sort-imports.suppress-warnings": true,
"javascript.implicitProjectConfig.checkJs": true
},
"extensions": {
"recommendations": [
"formulahendry.auto-rename-tag",
"msjsdiag.debugger-for-chrome",
"editorconfig.editorconfig",
"dbaeumer.vscode-eslint",
"eg2.vscode-npm-script",
"christian-kohler.npm-intellisense",
"christian-kohler.path-intellisense",
"esbenp.prettier-vscode",
"amatiasq.sort-imports",
"robertohuertasm.vscode-icons",
"mikestead.dotenv",
"rebornix.project-snippets",
"dsznajder.es7-react-js-snippets"
]
}
}