mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
29 lines
796 B
JSON
29 lines
796 B
JSON
{
|
|
"editor.insertSpaces": false,
|
|
"files.eol": "\n",
|
|
"files.trimTrailingWhitespace": true,
|
|
"files.exclude": {
|
|
".git": true,
|
|
".build": true,
|
|
"**/.DS_Store": true
|
|
},
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/bower_components": true,
|
|
".build/**": true,
|
|
"out*/**": true,
|
|
"i18n/**": true,
|
|
"extensions/**/out/**": true
|
|
},
|
|
"tslint.enable": true,
|
|
"tslint.rulesDirectory": "build/lib/tslint",
|
|
"lcov.path": ["./.build/coverage/lcov.info", "./.build/coverage-single/lcov.info"],
|
|
"lcov.watch": [{
|
|
"pattern": "**/*.test.js",
|
|
"command": "${workspaceRoot}/scripts/test.sh --coverage --run ${file}",
|
|
"windows": {
|
|
"command": "${workspaceRoot}\\scripts\\test.bat --coverage --run ${file}"
|
|
}
|
|
}],
|
|
"typescript.check.workspaceVersion": false
|
|
} |