forked from palantir/tslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
29 lines (24 loc) · 986 Bytes
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
// Controls the rendering size of tabs in characters. If set to auto, the value will be guessed based on the opened file.
"editor.tabSize": 4,
// Controls if the editor will insert spaces for tabs. If set to auto, the value will be guessed based on the opened file.
"editor.insertSpaces": true,
// Controls after how many characters the editor will wrap to the next line.
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 140,
"editor.wrappingIndent": "none",
// The folders to exclude when doing a full text search in the workspace.
"search.exclude": {
".git": true,
".tscache": true,
"bower_components": true,
"bin": true,
"build": true,
"lib": true,
"node_modules": true
},
"tslint.configFile": "tslint-vscode.json",
// Always use project's provided typescript compiler version
"typescript.tsdk": "node_modules/typescript/lib",
"files.eol": "\n"
}