-
Notifications
You must be signed in to change notification settings - Fork 11
/
plpgsql-lsp.code-workspace
63 lines (63 loc) · 1.24 KB
/
plpgsql-lsp.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"folders": [
{
"name": "root",
"path": "."
},
{
"name": "sample",
"path": "sample"
},
{
"name": "client",
"path": "client"
},
{
"name": "server",
"path": "server"
}
],
"settings": {
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.tabSize": 4,
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.comments.insertSpace": true,
"editor.trimAutoWhitespace": true,
"editor.useTabStops": true,
"shellformat.flag": "-ln=posix -bn -ci -sr",
"eslint.format.enable": true,
"eslint.validate": [
"javascript",
"typescript"
],
"[markdown]": {
"files.trimTrailingWhitespace": false,
},
"[typescript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.tabSize": 2,
"editor.rulers": [
88
]
},
"[javascript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.tabSize": 2,
"editor.rulers": [
88
]
}
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint"
]
}
}