vscode/.vscode/settings.json

29 lines
796 B
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"editor.insertSpaces": false,
2016-03-01 10:35:00 +00:00
"files.eol": "\n",
2015-11-13 13:39:38 +00:00
"files.trimTrailingWhitespace": true,
"files.exclude": {
".git": true,
2016-09-21 07:43:45 +00:00
".build": true,
2016-01-28 16:04:13 +00:00
"**/.DS_Store": true
2015-11-13 13:39:38 +00:00
},
"search.exclude": {
2016-03-16 10:26:04 +00:00
"**/node_modules": true,
2015-11-13 13:39:38 +00:00
"**/bower_components": true,
".build/**": true,
2015-11-13 13:39:38 +00:00
"out*/**": true,
2016-03-08 11:08:09 +00:00
"i18n/**": true,
2015-11-13 13:39:38 +00:00
"extensions/**/out/**": true
2016-01-14 18:38:28 +00:00
},
2016-02-17 15:49:05 +00:00
"tslint.enable": true,
2016-08-19 10:28:11 +00:00
"tslint.rulesDirectory": "build/lib/tslint",
2016-08-23 06:39:26 +00:00
"lcov.path": ["./.build/coverage/lcov.info", "./.build/coverage-single/lcov.info"],
2016-08-28 15:27:05 +00:00
"lcov.watch": [{
"pattern": "**/*.test.js",
2016-09-08 08:57:16 +00:00
"command": "${workspaceRoot}/scripts/test.sh --coverage --run ${file}",
2016-08-28 15:27:05 +00:00
"windows": {
"command": "${workspaceRoot}\\scripts\\test.bat --coverage --run ${file}"
}
}],
"typescript.check.workspaceVersion": false
2015-11-13 13:39:38 +00:00
}