-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
51 lines (51 loc) · 1.8 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
// Prettier
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false
},
"workbench.settings.useSplitJSON": true,
"workbench.settings.editor": "json",
// "editor.wordWrap": "bounded",
// The number of spaces a tab is equal to. This setting is overriden
// based on the file contents when `editor.detectIndentation` is true.
"editor.tabSize": 2,
// Insert spaces when pressing Tab. This setting is overriden
// based on the file contents when `editor.detectIndentation` is true.
"editor.insertSpaces": true,
// When opening a file, `editor.tabSize` and `editor.insertSpaces`
// will be detected based on the file contents.
"editor.detectIndentation": false,
"workbench.startupEditor": "newUntitledFile",
"window.zoomLevel": 0,
"go.formatTool": "gofmt",
"gitlens.keymap": "alternate",
"explorer.confirmDragAndDrop": false,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
// https://github.com/Microsoft/TypeScript/issues/6997
"javascript.validate.enable": false,
// flow
"flow.useNPMPackagedFlow": true,
"explorer.confirmDelete": false,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"gitlens.views.fileHistory.enabled": true,
"gitlens.views.lineHistory.enabled": true,
"python.jediEnabled": false,
// Example for language based indentation:
"indentRainbow.indentSetter": {
"python": {
"tabSize": 2,
"insertSpaces": true
}
},
"prettier.singleQuote": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
"editor.suggestSelection": "first",
"workbench.editor.enablePreview": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always"
}