mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
38 lines
No EOL
867 B
JSON
38 lines
No EOL
867 B
JSON
{
|
|
"editor.insertSpaces": false,
|
|
"files.eol": "\n",
|
|
"files.trimTrailingWhitespace": true,
|
|
"files.exclude": {
|
|
".git": true,
|
|
".build": true,
|
|
"**/.DS_Store": true,
|
|
"build/**/*.js": {
|
|
"when": "$(basename).ts"
|
|
}
|
|
},
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/bower_components": true,
|
|
".build/**": true,
|
|
"out/**": true,
|
|
"out-build/**": true,
|
|
"out-vscode/**": true,
|
|
"i18n/**": true,
|
|
"extensions/**/out/**": true,
|
|
"test/smoke/out/**": true
|
|
},
|
|
"tslint.enable": true,
|
|
"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}"
|
|
}
|
|
}
|
|
]
|
|
} |