-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitwinjs.code-workspace
97 lines (97 loc) · 2.52 KB
/
itwinjs.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
97
{
"folders": [
{
"name": "auth-clients",
"path": "../../auth-clients"
},
{
"name": "imodels-clients",
"path": "../../imodels-clients"
},
{
"name": "imodeljs",
"path": "../../imodeljs"
},
{
"name": "workspaces",
"path": "../../workspaces"
},
{
"name": "config",
"path": "../../imodeljs-config"
}
],
"settings": {
"editor.detectIndentation": false,
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.trimAutoWhitespace": true,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/.nyc_output": true,
"**/.rush": true
},
"files.exclude": {
"**/.nyc_output": true,
"**/.rush": true,
"**/*.build.log": true,
"**/*.build.error.log": true,
"**/*.TileCache*": true,
"**/generated-docs": true,
"**/package-deps.json": true,
"**/out": true,
"**/lib": true,
"**/build": true,
"common/temp": true
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"editor.formatOnSave": true,
"eslint.options": {
"configFile": "./package.json",
"useEslintrc": false,
"resolvePluginsRelativeTo": "./node_modules/@itwin/eslint-plugin"
},
"importSorter.importStringConfiguration.quoteMark": "double",
"importSorter.generalConfiguration.sortImportsInDirectory": false,
"importSorter.importStringConfiguration.trailingComma": "multiLine",
"importSorter.importStringConfiguration.maximumNumberOfImportExpressionsPerLine.count": 150,
"importSorter.importStringConfiguration.tabSize": 2,
"importSorter.sortConfiguration.removeUnusedImports": true,
"importSorter.sortConfiguration.customOrderingRules.rules": [
{
"type": "importMember",
"regex": "^$",
"orderLevel": 5,
"disableSort": true
},
{
"regex": "^[^.@]",
"orderLevel": 10
},
{
"regex": "^[@]",
"orderLevel": 15
},
{
"regex": "^[.]",
"orderLevel": 30
}
],
"importSorter.sortConfiguration.customOrderingRules.defaultNumberOfEmptyLinesAfterGroup": 0,
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
}
]
}
}