-
Notifications
You must be signed in to change notification settings - Fork 28
/
abap remote fs.code-workspace
96 lines (96 loc) · 3.01 KB
/
abap remote fs.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
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
{
"folders": [
{
"path": ".",
"name": "vscode-abap-remote-fs"
},
{
"path": "client"
},
{
"path": "server"
},
{
"path": "wiki"
},
{
"path": "modules/sharedapi"
},
{
"path": "modules/abapObject"
},
{
"path": "modules/abapfs"
}
],
"settings": {
"typescript.tsc.autoDetect": "off",
"typescript.locale": "en",
"gitlens.codeLens.enabled": false,
"prettier.semi": false,
"editor.formatOnSave": true,
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true,
"**/node_modules/**": true
},
"prettier.arrowParens": "avoid",
"prettier.proseWrap": "never",
"prettier.trailingComma": "none",
"markdownlint.config": {
"no-duplicate-header": false
},
"jest.disabledWorkspaceFolders": [
"vscode-abap-remote-fs",
"wiki",
"sharedapi"
],
"githubIssues.queries": [
{
"label": "My Issues",
"query": "default"
},
{
"label": "All open Issues",
"query": "state:open repo:${owner}/${repository} sort:created-desc"
}
],
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[xml]": {
"editor.defaultFormatter": "mikeburgh.xml-format"
},
"typescript.format.enable": true,
"typescript.format.insertSpaceAfterCommaDelimiter": true,
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
"typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": true,
"typescript.format.insertSpaceBeforeAndAfterBinaryOperators": true,
"typescript.format.insertSpaceAfterSemicolonInForStatements": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
"typescript.format.insertSpaceAfterConstructor": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false,
"typescript.format.semicolons": "remove",
"javascript.format.semicolons": "remove",
"typescript.format.insertSpaceAfterTypeAssertion": false,
"typescript.format.insertSpaceBeforeFunctionParenthesis": false,
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": false,
"typescript.format.placeOpenBraceOnNewLineForFunctions": false,
"typescript.preferences.quoteStyle": "auto"
}
}