vscode/.vscode/settings.json

93 lines
2.2 KiB
JSON
Raw Normal View History

2018-03-05 12:47:11 +01:00
{
"editor.insertSpaces": false,
"files.trimTrailingWhitespace": true,
"files.exclude": {
".git": true,
".build": true,
".profile-oss": true,
2018-03-05 12:47:11 +01:00
"**/.DS_Store": true,
"build/**/*.js": {
"when": "$(basename).ts"
}
2018-03-05 12:47:11 +01:00
},
"files.associations": {
2018-11-16 23:21:02 +01:00
"cglicenses.json": "jsonc"
2018-03-05 12:47:11 +01: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 09:09:07 +02:00
"test/smoke/out/**": true,
2020-02-11 17:35:53 +01:00
"test/automation/out/**": true,
"test/integration/browser/out/**": true,
2020-04-23 11:16:21 +02:00
"src/vs/base/test/node/uri.test.data.txt": true,
"src/vs/workbench/test/browser/api/extHostDocumentData.test.perf-data.ts": true
2018-03-05 12:47:11 +01: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}"
}
}
],
"eslint.options": {
"rulePaths": ["./build/lib/eslint"]
},
"typescript.tsdk": "node_modules/typescript/lib",
2018-03-07 11:02:53 +01:00
"npm.exclude": "**/extensions/**",
2019-10-24 21:09:47 +02:00
"npm.packageManager": "yarn",
"emmet.excludeLanguages": [],
"typescript.preferences.importModuleSpecifier": "non-relative",
2018-11-16 23:21:02 +01:00
"typescript.preferences.quoteStyle": "single",
2019-02-08 15:36:13 +01:00
"json.schemas": [
{
"fileMatch": ["cgmanifest.json"],
2019-02-08 15:36:13 +01:00
"url": "./.vscode/cgmanifest.schema.json"
},
{
"fileMatch": ["cglicenses.json"],
2019-02-08 15:36:13 +01:00
"url": "./.vscode/cglicenses.schema.json"
}
],
"git.ignoreLimitWarning": true,
"remote.extensionKind": {
"msjsdiag.debugger-for-chrome": "workspace"
2019-07-25 10:32:59 +02:00
},
2019-10-18 11:52:19 +02:00
"gulp.autoDetect": "off",
2020-03-05 22:45:19 +01:00
"files.insertFinalNewline": true,
2020-10-20 15:29:35 +02:00
"[plaintext]": {
"files.insertFinalNewline": false
2020-10-20 15:29:35 +02:00
},
2020-06-15 16:14:34 +02:00
"[typescript]": {
2020-12-17 17:13:35 +01:00
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.formatOnSave": true
2020-04-17 14:16:33 +02:00
},
2020-09-22 14:36:58 +02:00
"[javascript]": {
2020-12-17 17:13:35 +01:00
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.formatOnSave": true
2020-09-22 14:36:58 +02:00
},
"typescript.tsc.autoDetect": "off",
"testing.autoRun.mode": "rerun",
"conventionalCommits.scopes": [
"tree",
"scm",
"grid",
"splitview",
"table",
"list",
"git",
"sash"
]
2019-09-21 01:00:37 +02:00
}