-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode.json
More file actions
124 lines (124 loc) · 4.06 KB
/
vscode.json
File metadata and controls
124 lines (124 loc) · 4.06 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[svelte]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[vhdl]": {
"editor.fontLigatures": "\"cv20\""
},
"[haskell]": {
"editor.fontLigatures": "\"ss06\", \"cv24\""
},
"debug.onTaskErrors": "debugAnyway",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.experimentalWhitespaceRendering": "font",
"editor.fontFamily": "'FiraCode Nerd Font', 'Fira Code', 'Droid Sans Mono', 'monospace'",
"editor.fontLigatures": "\"ss06\"",
"editor.fontWeight": "normal",
"editor.inlayHints.fontSize": 11,
"editor.inlayHints.padding": true,
"editor.renderWhitespace": "boundary",
"extensions.experimental.affinity": {
"asvetliakov.vscode-neovim": 1
},
"files.exclude": {
"**/.direnv/": true,
"**/.history/": true
},
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/.direnv/**": true,
"**/node_modules/**": true
},
"javascript.inlayHints.enumMemberValues.enabled": true,
"javascript.inlayHints.functionLikeReturnTypes.enabled": true,
"javascript.inlayHints.parameterNames.enabled": "all",
"javascript.inlayHints.parameterTypes.enabled": true,
"javascript.inlayHints.propertyDeclarationTypes.enabled": true,
"javascript.inlayHints.variableTypes.enabled": true,
"npm.exclude": "**/.direnv/**",
"prettier.experimentalTernaries": true,
"prettier.printWidth": 100,
"prettier.useTabs": true,
"python.analysis.autoFormatStrings": true,
"python.analysis.autoImportCompletions": true,
"python.analysis.inlayHints.callArgumentNames": "partial",
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.inlayHints.pytestParameters": true,
"python.analysis.inlayHints.variableTypes": true,
"redhat.telemetry.enabled": false,
"security.workspace.trust.enabled": false,
"svelte.enable-ts-plugin": true,
"svelte.plugin.svelte.defaultScriptLanguage": "ts",
"typescript.inlayHints.enumMemberValues.enabled": true,
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
"typescript.inlayHints.parameterNames.enabled": "all",
"typescript.inlayHints.parameterTypes.enabled": true,
"typescript.inlayHints.propertyDeclarationTypes.enabled": true,
"typescript.inlayHints.variableTypes.enabled": true,
"typescript.preferences.preferTypeOnlyAutoImports": true,
"typescript.tsserver.experimental.enableProjectDiagnostics": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"window.commandCenter": false,
"window.titleBarStyle": "custom",
"workbench.layoutControl.enabled": false,
"editor.formatOnSaveMode": "modificationsIfAvailable",
"git.mergeEditor": true,
"terminal.integrated.fontLigatures": true,
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"flake8.args": [
"--max-line-length=88"
],
"git.autofetch": true,
"python.terminal.executeInFileDir": true,
"terminal.integrated.scrollback": 10000,
"prettier.documentSelectors": [
"*.svelte"
],
"gitlens.telemetry.enabled": false,
"notebook.markup.fontSize": 15.4,
"notebook.markdown.lineHeight": 26,
"notebook.markup.fontFamily": "\"Inter\"",
"diffEditor.ignoreTrimWhitespace": false,
"haskell.manageHLS": "GHCup",
"terminal.integrated.fontLigatures.enabled": true,
"nix.enableLanguageServer": true,
"nix.serverPath": "nixd",
"task.allowAutomaticTasks": "on",
"notebook.editorOptionsCustomizations": {
"editor.tabSize": 4,
"editor.indentSize": 4,
"editor.insertSpaces": false
},
"flake8.severity": {
"E": "Warning"
},
"chat.disableAIFeatures": true,
"gitlens.ai.enabled": false,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"webgl-glsl-editor.format.favorFloatingSuffix": false,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"python.analysis.typeCheckingMode": "standard"
}