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