vscode/.vscode/settings.json

65 lines
1.5 KiB
JSON
Raw Normal View History

2018-03-05 11:47:11 +00:00
{
"editor.insertSpaces": false,
"files.trimTrailingWhitespace": true,
"files.exclude": {
".git": true,
".build": true,
"**/.DS_Store": true,
"build/**/*.js": {
"when": "$(basename).ts"
}
},
"files.associations": {
2018-11-16 22:21:02 +00:00
"cglicenses.json": "jsonc"
2018-03-05 11:47:11 +00:00
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
".build/**": true,
"out/**": true,
"out-build/**": true,
"out-vscode/**": true,
"i18n/**": true,
"extensions/**/out/**": true,
2018-10-23 07:09:07 +00:00
"test/smoke/out/**": true,
"src/vs/base/test/node/uri.test.data.txt": true
2018-03-05 11:47:11 +00:00
},
"lcov.path": [
"./.build/coverage/lcov.info",
"./.build/coverage-single/lcov.info"
],
"lcov.watch": [
{
"pattern": "**/*.test.js",
"command": "${workspaceFolder}/scripts/test.sh --coverage --run ${file}",
"windows": {
"command": "${workspaceFolder}\\scripts\\test.bat --coverage --run ${file}"
}
}
],
"typescript.tsdk": "node_modules/typescript/lib",
2018-03-07 10:02:53 +00:00
"npm.exclude": "**/extensions/**",
"emmet.excludeLanguages": [],
"typescript.preferences.importModuleSpecifier": "non-relative",
2018-11-16 22:21:02 +00:00
"typescript.preferences.quoteStyle": "single",
2019-02-08 14:36:13 +00:00
"json.schemas": [
{
"fileMatch": [
"cgmanifest.json"
],
"url": "./.vscode/cgmanifest.schema.json"
},
{
"fileMatch": [
"cglicenses.json"
],
"url": "./.vscode/cglicenses.schema.json"
}
],
"git.ignoreLimitWarning": true,
"remote.extensionKind": {
"msjsdiag.debugger-for-chrome": "workspace"
2019-07-25 08:32:59 +00:00
},
2019-09-20 23:00:37 +00:00
"files.insertFinalNewline": true
}