-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbaseVsCodeSettings.ts
More file actions
42 lines (32 loc) · 1006 Bytes
/
baseVsCodeSettings.ts
File metadata and controls
42 lines (32 loc) · 1006 Bytes
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
export const BaseVsCodeSettings = {
'debug.openExplorerOnEnd': true,
'editor.tabSize': 2,
'editor.rulers': [90],
'editor.autoIndent': 'full',
'editor.cursorBlinking': 'solid',
'editor.formatOnType': false,
'editor.formatOnPaste': false,
'editor.formatOnSave': true,
'editor.minimap.enabled': false,
'editor.codeActionsOnSave': {
'source.organizeImports': false,
'source.fixAll.tslint': true,
},
'editor.defaultFormatter': 'esbenp.prettier-vscode',
'[html]': {
'editor.defaultFormatter': 'HookyQR.beautify',
},
'explorer.openEditors.visible': 0,
'files.trimTrailingWhitespace': true,
'files.autoSave': 'onFocusChange',
'git.confirmSync': false,
'git.enableSmartCommit': true,
'npm.enableScriptExplorer': true,
'typescript.tsdk': 'node_modules/typescript/lib',
'workbench.iconTheme': 'material-icon-theme',
'auto-close-tag.SublimeText3Mode': true,
'html.autoClosingTags': false,
'gitlens.menus': {
editorGroup: false,
},
} as any