onnxruntime/js/.vscode/settings.json
Yulong Wang 4ebc9c3b5e
[JS] onnxruntime-web (#7394)
* add web

* add script and test

* fix lint

* add test/data/ops

* add test/data/node/ to gitignore

* modify scripts

* add onnxjs

* fix tests

* fix test-runner

* fix sourcemap

* fix onnxjs profiling

* update test list

* update README

* resolve comments

* set wasm as default backend

* rename package

* update copyright header

* do not use class "Buffer" in browser context

* revise readme
2021-04-27 00:04:25 -07:00

40 lines
1.1 KiB
JSON

{
"[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"
}