-
Notifications
You must be signed in to change notification settings - Fork 1
/
vscode-settings.json
87 lines (87 loc) · 2.2 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
{
// Keymaps
"atomKeymap.promptV3Features": true,
//
// Debug
//
"debug.internalConsoleOptions": "neverOpen",
"debug.openDebug": "openOnDebugBreak",
//
// Editor settings
//
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 14,
"editor.formatOnSave": true,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderIndentGuides": false,
"editor.renderWhitespace": "none",
"workbench.editor.showIcons": false,
"explorer.openEditors.visible": 0,
"editor.folding": false,
"editor.rulers": [
100
],
"editor.wordWrapColumn": 100,
"explorer.confirmDragAndDrop": false,
"search.globalFindClipboard": true,
"search.useGlobalIgnoreFiles": true,
"window.zoomLevel": -1,
"workbench.activityBar.visible": false,
"zenMode.fullScreen": false,
//
// JavaScript
//
"javascript.validate.enable": false,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
//
// Python configuration
//
"python.dataScience.allowInput": false,
"python.dataScience.askForKernelRestart": false,
"python.dataScience.sendSelectionToInteractiveWindow": true,
"python.disableInstallationCheck": true,
"python.dataScience.addGotoCodeLenses": false,
"editor.parameterHints.enabled": false,
"python.formatting.autopep8Args": [
"--max-line-length=100"
],
"python.formatting.blackArgs": [
"--line-length",
"100"
],
"python.sortImports.args": [
"-rc",
"-sp isort.cfg"
],
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.testing.pytestEnabled": true,
"python.linting.pylintEnabled": false,
"python.dataScience.useNotebookEditor": false,
"python.languageServer": "Pylance",
//
// Workbench settings
//
"search.exclude": {
".env": true,
".venv": true,
".history": true,
".pytest_cache": true,
"**/bower_components": true,
"**/lib": true,
"**/node_modules": true
},
"files.exclude": {
".env/*": true,
".venv/*": true,
".history/*": true,
".pytest_cache/*": true
}
}