-
Notifications
You must be signed in to change notification settings - Fork 26.3k
/
settings.json
87 lines (87 loc) · 2.68 KB
/
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
{
"[python]": {
"editor.bracketPairColorization.enabled": false,
"editor.guides.bracketPairs": false,
"editor.tabSize": 4
},
"editor.bracketPairColorization.enabled": true,
"editor.detectIndentation": false,
"editor.fontSize": 14,
"editor.guides.bracketPairs": true,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderControlCharacters": true,
"editor.rulers": [
80,
120
],
"editor.showFoldingControls": "always",
"editor.snippetSuggestions": "top",
"editor.tabSize": 2,
"emmet.includeLanguages": {
"erb": "html"
},
"emmet.showSuggestionsAsSnippets": true,
"emmet.triggerExpansionOnTab": true,
"explorer.confirmDelete": false,
"files.exclude": {
"__pycache__": true,
"_site": true,
".asset-cache": true,
".bundle": true,
".ipynb_checkpoints": true,
".pytest_cache": true,
".sass-cache": true,
".svn": true,
"**/.DS_Store": true,
"**/.egg-info": true,
"**/.git": true,
"build": true,
"coverage": true,
"dist": true,
"log": true,
"node_modules": true,
"public/packs": true,
"tmp": true
},
"files.hotExit": "off",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/audits/**": true,
"**/coverage/**": true,
"**/log/**": true,
"**/node_modules/**": true,
"**/tmp/**": true,
"**/vendor/**": true
},
"git.enabled": false,
"notebook.diff.ignoreMetadata": true,
"notebook.lineNumbers": "on",
"notebook.markup.fontSize": 13,
"python.defaultInterpreterPath": "~/.pyenv/shims/python",
"python.formatting.provider": "yapf",
"python.languageServer": "Pylance",
"python.linting.enabled": false,
"python.linting.flake8Enabled": false,
"python.linting.pylintEnabled": false,
"python.terminal.activateEnvironment": false,
"ruby.lint": {
"rubocop": true
},
"search.exclude": {
// Inherits all glob patterns from the `files.exclude` setting.
"**/.venv": true
},
"telemetry.telemetryLevel": "off",
"window.restoreWindows": "none",
"window.newWindowDimensions": "maximized",
"workbench.editor.enablePreview": true,
"workbench.iconTheme": "vscode-great-icons",
"workbench.settings.editor": "json",
"workbench.settings.openDefaultSettings": true,
"workbench.settings.useSplitJSON": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.panel.defaultLocation": "right",
}