vscode/.vscode/settings.json

116 lines
2.7 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,
".profile-oss": true,
2018-03-05 11:47:11 +00:00
"**/.DS_Store": true,
2022-09-22 19:00:39 +00:00
"cli/target": true,
2018-03-05 11:47:11 +00:00
"build/**/*.js": {
"when": "$(basename).ts"
}
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}"
}
}
],
"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",
"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"
],
2019-02-08 14:36:13 +00:00
"url": "./.vscode/cgmanifest.schema.json"
},
{
"fileMatch": [
"cglicenses.json"
],
2019-02-08 14:36:13 +00:00
"url": "./.vscode/cglicenses.schema.json"
}
],
"git.ignoreLimitWarning": true,
"git.branchProtection": [
"main",
2022-09-27 12:29:48 +00:00
"distro",
"release/*"
],
"git.branchProtectionPrompt": "alwaysCommitToNewBranch",
"git.branchRandomName.enable": true,
"git.fetchBeforeCheckout": true,
2022-06-27 10:55:05 +00:00
"git.mergeEditor": true,
"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]": {
"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",
"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",
"editor.formatOnSave": true
2020-09-22 12:36:58 +00:00
},
2022-09-22 19:00:39 +00:00
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
"editor.formatOnSave": true,
"editor.insertSpaces": true
},
"typescript.tsc.autoDetect": "off",
"testing.autoRun.mode": "rerun",
"conventionalCommits.scopes": [
"tree",
"scm",
"grid",
"splitview",
"table",
"list",
"git",
"sash"
2022-01-17 03:43:59 +00:00
],
"editor.quickSuggestions": {
"other": "inline",
"comments": "inline",
"strings": "inline"
},
"githubPullRequests.assignCreated": "${user}",
"githubPullRequests.defaultMergeMethod": "squash"
2019-09-20 23:00:37 +00:00
}