2018-03-05 11:47:11 +00:00
|
|
|
{
|
|
|
|
"editor.insertSpaces": false,
|
|
|
|
"files.trimTrailingWhitespace": true,
|
|
|
|
"files.exclude": {
|
|
|
|
".git": true,
|
|
|
|
".build": true,
|
2021-07-09 19:46:47 +00:00
|
|
|
".profile-oss": true,
|
2018-03-05 11:47:11 +00:00
|
|
|
"**/.DS_Store": true,
|
|
|
|
"build/**/*.js": {
|
|
|
|
"when": "$(basename).ts"
|
2021-10-21 07:05:44 +00:00
|
|
|
}
|
2018-03-05 11:47:11 +00:00
|
|
|
},
|
|
|
|
"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,
|
2020-02-11 16:35:53 +00:00
|
|
|
"test/automation/out/**": true,
|
|
|
|
"test/integration/browser/out/**": true,
|
2020-04-23 09:16:21 +00:00
|
|
|
"src/vs/base/test/node/uri.test.data.txt": true,
|
2022-01-21 16:19:03 +00:00
|
|
|
"src/vs/workbench/api/test/browser/extHostDocumentData.test.perf-data.ts": 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}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
2019-12-31 10:20:42 +00:00
|
|
|
"eslint.options": {
|
2022-01-03 09:18:42 +00:00
|
|
|
"rulePaths": [
|
|
|
|
"./build/lib/eslint"
|
|
|
|
]
|
2019-12-31 10:20:42 +00:00
|
|
|
},
|
2018-03-07 07:56:26 +00:00
|
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
2018-03-07 10:02:53 +00:00
|
|
|
"npm.exclude": "**/extensions/**",
|
2019-10-24 19:09:47 +00:00
|
|
|
"npm.packageManager": "yarn",
|
2018-05-08 22:23:22 +00:00
|
|
|
"emmet.excludeLanguages": [],
|
2018-05-14 17:16:51 +00:00
|
|
|
"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": [
|
|
|
|
{
|
2022-01-03 09:18:42 +00:00
|
|
|
"fileMatch": [
|
|
|
|
"cgmanifest.json"
|
|
|
|
],
|
2019-02-08 14:36:13 +00:00
|
|
|
"url": "./.vscode/cgmanifest.schema.json"
|
|
|
|
},
|
|
|
|
{
|
2022-01-03 09:18:42 +00:00
|
|
|
"fileMatch": [
|
|
|
|
"cglicenses.json"
|
|
|
|
],
|
2019-02-08 14:36:13 +00:00
|
|
|
"url": "./.vscode/cglicenses.schema.json"
|
|
|
|
}
|
|
|
|
],
|
2019-06-17 18:21:14 +00:00
|
|
|
"git.ignoreLimitWarning": true,
|
2022-05-13 12:15:14 +00:00
|
|
|
"git.branchProtection": [
|
|
|
|
"main",
|
|
|
|
"release/*"
|
|
|
|
],
|
|
|
|
"git.branchProtectionPrompt": "alwaysCommitToNewBranch",
|
2022-05-11 09:43:34 +00:00
|
|
|
"git.branchRandomName.enable": true,
|
2022-06-27 10:55:05 +00:00
|
|
|
"git.mergeEditor": true,
|
2019-06-17 18:21:14 +00:00
|
|
|
"remote.extensionKind": {
|
|
|
|
"msjsdiag.debugger-for-chrome": "workspace"
|
2019-07-25 08:32:59 +00:00
|
|
|
},
|
2019-10-18 09:52:19 +00:00
|
|
|
"gulp.autoDetect": "off",
|
2020-03-05 21:45:19 +00:00
|
|
|
"files.insertFinalNewline": true,
|
2020-10-20 13:29:35 +00:00
|
|
|
"[plaintext]": {
|
2021-11-05 15:23:07 +00:00
|
|
|
"files.insertFinalNewline": false
|
2020-10-20 13:29:35 +00:00
|
|
|
},
|
2020-06-15 14:14:34 +00:00
|
|
|
"[typescript]": {
|
2020-12-17 16:13:35 +00:00
|
|
|
"editor.defaultFormatter": "vscode.typescript-language-features",
|
2021-11-05 15:23:07 +00:00
|
|
|
"editor.formatOnSave": true
|
2020-04-17 12:16:33 +00:00
|
|
|
},
|
2020-09-22 12:36:58 +00:00
|
|
|
"[javascript]": {
|
2020-12-17 16:13:35 +00:00
|
|
|
"editor.defaultFormatter": "vscode.typescript-language-features",
|
2021-11-05 15:23:07 +00:00
|
|
|
"editor.formatOnSave": true
|
2020-09-22 12:36:58 +00:00
|
|
|
},
|
2021-02-18 23:36:52 +00:00
|
|
|
"typescript.tsc.autoDetect": "off",
|
2021-04-15 22:26:51 +00:00
|
|
|
"testing.autoRun.mode": "rerun",
|
2021-11-08 14:51:31 +00:00
|
|
|
"conventionalCommits.scopes": [
|
|
|
|
"tree",
|
|
|
|
"scm",
|
|
|
|
"grid",
|
|
|
|
"splitview",
|
|
|
|
"table",
|
2021-11-09 12:24:28 +00:00
|
|
|
"list",
|
2021-11-10 11:17:03 +00:00
|
|
|
"git",
|
|
|
|
"sash"
|
2022-01-17 03:43:59 +00:00
|
|
|
],
|
2022-04-05 12:33:27 +00:00
|
|
|
"editor.quickSuggestions": {
|
|
|
|
"other": "inline",
|
|
|
|
"comments": "inline",
|
|
|
|
"strings": "inline"
|
|
|
|
},
|
2022-05-11 09:04:32 +00:00
|
|
|
"githubPullRequests.assignCreated": "${user}",
|
|
|
|
"githubPullRequests.defaultMergeMethod": "squash"
|
2019-09-20 23:00:37 +00:00
|
|
|
}
|