"...Microsoft.ML.OnnxRuntime/targets/xamarinios10/targets.xml" did not exist on "cf1acfd2990a25052481bc7a64b5bbadbbdd3676"
settings.json 1.13 KB
Newer Older
gaoqiong's avatar
gaoqiong committed
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
{
  "[cpp]": {
    "editor.formatOnSave": true,
    "editor.defaultFormatter": "xaver.clang-format"
  },
  "[jsonc]": {
    "editor.formatOnSave": true,
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[markdown]": {
    "editor.formatOnSave": true,
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[typescript]": {
    "editor.formatOnSave": true,
    "editor.defaultFormatter": "xaver.clang-format"
  },
  "clang-format.executable": "${workspaceRoot}/node_modules/.bin/clang-format",
  "clang-format.style": "file",
  "editor.detectIndentation": false,
  "editor.insertSpaces": true,
  "editor.rulers": [120],
  "editor.tabSize": 2,
  "editor.wrappingIndent": "none",
  "files.exclude": {
    "common/lib/**/*.js.map": true,
    "common/lib/**/*.js": true,
    "node/lib/**/*.js.map": true,
    "node/lib/**/*.js": true,
    "web/lib/**/*.js.map": true,
    "web/lib/**/*.js": true
  },
  "files.insertFinalNewline": true,
  "files.trimTrailingWhitespace": true,
  "search.exclude": {
    "**/node_modules": true,
    "./types": true
  },
  "typescript.tsdk": "node_modules/typescript/lib",
  "git.detectSubmodules": false
}