-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode.settings.json
102 lines (102 loc) · 3.27 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"workbench.iconTheme": "vs-minimal",
"gitlens.codeLens.scopes": ["document"],
"workbench.editor.highlightModifiedTabs": true,
"workbench.startupEditor": "newUntitledFile",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"search.exclude": {
"**/.vs": true,
"**/bower_components": true,
"**/node_modules": true,
"**/vendor": true
},
"extensions.ignoreRecommendations": true,
"gitlens.keymap": "chorded",
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": true,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false
},
"search.followSymlinks": false,
"window.clickThroughInactive": false,
"files.exclude": {
"**/__pycache__": true,
"**/*.pyc": true
},
"editor.fontFamily": "FiraCode-Retina, Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.acceptSuggestionOnEnter": "off",
"editor.cursorStyle": "block",
"editor.cursorBlinking": "solid",
"editor.renderWhitespace": "none",
"editor.semanticHighlighting.enabled": true,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"terraform.indexing": {
"enabled": false,
"liveIndexing": false,
"delay": 500,
"exclude": [".terraform/**/*", "**/.terraform/**/*"]
},
"terraform.languageServer": {
"external": true
},
"editor.formatOnSave": true,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"python.venvFolders": ["/Users/aburgel/Library/Caches/pypoetry/virtualenvs/"],
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"editor.formatOnType": true,
"editor.defaultFormatter": "charliermarsh.ruff"
},
"python.testing.autoTestDiscoverOnSaveEnabled": false,
"omnisharp.analyzeOpenDocumentsOnly": true,
"omnisharp.enableImportCompletion": true,
"omnisharp.enableRoslynAnalyzers": true,
"lldb.library": "/Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Versions/A/LLDB",
"githubPullRequests.pullBranch": "never",
"terraform.codelens.referenceCount": true,
"python.analysis.autoImportCompletions": true,
"python.analysis.completeFunctionParens": true,
"rubyLsp.enabledFeatures": {
"codeActions": true,
"diagnostics": true,
"documentHighlights": true,
"documentLink": true,
"documentSymbols": true,
"foldingRanges": true,
"formatting": true,
"hover": true,
"inlayHint": true,
"onTypeFormatting": true,
"selectionRanges": true,
"semanticHighlighting": true,
"completion": true,
"codeLens": false
},
"rubyLsp.rubyVersionManager": "asdf",
"rubyLsp.enableExperimentalFeatures": true,
"prettier.singleQuote": true,
"yaml.format.singleQuote": true,
"git.openRepositoryInParentFolders": "never",
"security.promptForLocalFileProtocolHandling": false
}