forked from InvoiceShelf/InvoiceShelf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
invoiceshelf.code-workspace
44 lines (44 loc) · 1.17 KB
/
invoiceshelf.code-workspace
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"search.exclude": {
"**/public": true
},
"editor.formatOnSave": true,
"vetur.validation.template": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.codeActionsOnSaveTimeout": 2000,
"prettier.semi": false,
"prettier.singleQuote": true,
"files.associations": {},
"eslint.codeAction.disableRuleComment": {},
"eslint.codeAction.showDocumentation": {
"enable": true
},
"eslint.validate": [
"javascript",
"javascriptreact",
"vue"
],
"[php]": {
"editor.defaultFormatter": "junstyle.php-cs-fixer"
},
"debug.allowBreakpointsEverywhere": true,
"files.autoGuessEncoding": true,
"files.exclude": {
"**/.vscode": true,
"compile_commands.json": true,
"*.hrccproj": true,
"*.sln": true,
"*.suo": true
},
}
}