-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode.settings.json
71 lines (71 loc) · 2.52 KB
/
vscode.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"workbench.editor.enablePreview": false,
"editor.detectIndentation": false,
"workbench.statusBar.visible": true,
"editor.foldingStrategy": "indentation",
"editor.showFoldingControls": "always",
"workbench.iconTheme": "icons",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"git.confirmSync": false,
"auto-rename-tag.activationOnLanguage": [
"html",
"javascript",
"javascriptreact"
],
"editor.renderWhitespace": "none",
"editor.comments.insertSpace": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "never"
},
"eslint.validate": ["javascript"],
"eslint.format.enable": true,
"editor.fontFamily": "'Monaspace Neon', monospace",
"editor.fontLigatures": "'calt', 'liga', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'ss09'",
"mssql.connections": [
{
"server": "{{put-server-name-here}}",
"database": "{{put-database-name-here}}",
"user": "{{put-username-here}}",
"password": ""
}
],
"git.autofetch": true,
"vsicons.dontShowNewVersionMessage": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.semi": false,
"prettier.singleQuote": true,
"prettier.trailingComma": "none",
"explorer.compactFolders": false,
"editor.formatOnSave": true,
"workbench.startupEditor": "none",
"diffEditor.ignoreTrimWhitespace": false,
"workbench.editor.highlightModifiedTabs": true,
"bracketPairColorizer.depreciation-notice": false,
"mssql.enableQueryHistoryCapture": false,
"workbench.editor.empty.hint": "hidden",
"window.confirmSaveUntitledWorkspace": false,
"editor.inlayHints.enabled": "off",
"files.autoSave": "afterDelay",
"rust-analyzer.inlayHints.chainingHints.enable": false,
"rust-analyzer.inlayHints.closingBraceHints.enable": false,
"rust-analyzer.inlayHints.typeHints.enable": false,
"rust-analyzer.lens.enable": false,
"rust-analyzer.lens.implementations.enable": false,
"rust-analyzer.lens.run.enable": false,
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
"editor.formatOnSave": true
},
"breadcrumbs.enabled": false,
"window.menuBarVisibility": "compact",
"editor.renderControlCharacters": false,
"editor.stickyScroll.enabled": false,
"editor.codeLensFontFamily": "Monaspace Neon, monospace",
"editor.experimentalInlineEdit.fontFamily": "Monaspace Neon, monospace",
"editor.minimap.maxColumn": 80,
"workbench.colorTheme": "Webstorm Darcula",
"editor.fontSize": 15
}