settings.json 1.5 KB
Newer Older
J
Joao Moreno 已提交
1 2 3 4 5 6 7 8 9 10 11 12
{
	"editor.insertSpaces": false,
	"files.trimTrailingWhitespace": true,
	"files.exclude": {
		".git": true,
		".build": true,
		"**/.DS_Store": true,
		"build/**/*.js": {
			"when": "$(basename).ts"
		}
	},
	"files.associations": {
A
Alex Dima 已提交
13
		"cglicenses.json": "jsonc"
J
Joao Moreno 已提交
14 15 16 17 18 19 20 21 22 23
	},
	"search.exclude": {
		"**/node_modules": true,
		"**/bower_components": true,
		".build/**": true,
		"out/**": true,
		"out-build/**": true,
		"out-vscode/**": true,
		"i18n/**": true,
		"extensions/**/out/**": true,
24 25
		"test/smoke/out/**": true,
		"src/vs/base/test/node/uri.test.data.txt": true
J
Joao Moreno 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39
	},
	"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}"
			}
		}
	],
40
	"typescript.tsdk": "node_modules/typescript/lib",
J
Joao Moreno 已提交
41
	"npm.exclude": "**/extensions/**",
42
	"emmet.excludeLanguages": [],
43
	"typescript.preferences.importModuleSpecifier": "non-relative",
A
Alex Dima 已提交
44
	"typescript.preferences.quoteStyle": "single",
A
Alex Dima 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58
	"json.schemas": [
		{
			"fileMatch": [
				"cgmanifest.json"
			],
			"url": "./.vscode/cgmanifest.schema.json"
		},
		{
			"fileMatch": [
				"cglicenses.json"
			],
			"url": "./.vscode/cglicenses.schema.json"
		}
	],
59 60 61
	"git.ignoreLimitWarning": true,
	"remote.extensionKind": {
		"msjsdiag.debugger-for-chrome": "workspace"
J
Joao Moreno 已提交
62
	},
A
Alex Ross 已提交
63
	"gulp.autoDetect": "off",
M
Miguel Solorio 已提交
64 65
	"files.insertFinalNewline": true
}