-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathOdin.code-workspace
48 lines (48 loc) · 1.13 KB
/
Odin.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
{
"folders": [
{
"path": "./m3-odin",
"name": "Dev"
},
{
"path": "./cli",
"name": "CLI"
},
{
"path": "./m3-odin/projects/infor-up/m3-odin",
"name": "Core"
},
{
"path": "./m3-odin/projects/infor-up/m3-odin-angular",
"name": "Odin Angular"
}
],
"settings": {
"tslint.enable": true,
"tslint.autoFixOnSave": true,
"tslint.exclude": "**/node_modules/**",
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.rulers": [
140
],
"[typescript]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"editor.tabSize": 3,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true
},
"extensions": {
"recommendations": [
"ms-vscode.vscode-typescript-tslint-plugin",
"Angular.ng-template",
"msjsdiag.debugger-for-chrome",
"PKief.material-icon-theme"
]
}
}