forked from mplanchard/vscode-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user-settings.json
135 lines (123 loc) · 3.33 KB
/
user-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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// Place your settings in this file to overwrite the default settings
{
"[markdown]": {
"editor.wordWrap": "off",
"editor.quickSuggestions": false
},
"cSpell.userWords": [
"AMQP",
"pypiserver",
"Popen",
"Unprocessable",
"vhost",
"affordance",
"ansible",
"boto",
"chdir",
"deserialization",
"deserialize",
"deserialized",
"devs",
"enthought",
"getcwd",
"getenv",
"noqa",
"orgs",
"parametrize",
"postgresql",
"presentational",
"pylint",
"pymongo",
"pytest",
"qstring",
"reconstructor",
"repo",
"rfind",
"rtype",
"secretfiles",
"serializable",
"snmp",
"strftime",
"stringify",
"truthy",
"unmonitored",
"unmount",
"werkzeug"
],
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": true,
"editor.minimap.showSlider": "always",
"editor.renderControlCharacters": false,
"editor.renderWhitespace": "none",
"editor.rulers": [72, 79],
"explorer.autoReveal": false,
"files.associations": {
"*.bson": "json"
},
"files.autoSave": "onFocusChange",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.pyc": true,
"**/__pycache__": true,
"**/.mypy_cache": true,
"**/.idea": true,
"**/.tox": true
},
"files.trimTrailingWhitespace": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"gitlens.codeLens.enabled": false,
"gitlens.historyExplorer.enabled": true,
"python.linting.flake8Args": [
"--ignore",
"E121,E123,E126,E226,E24,E402,E704,W503,W504"
],
"python.linting.flake8Enabled": true,
"python.linting.pydocstyleArgs": [
"--ignore",
"D203,D210,D213"
],
"python.linting.pydocstyleEnabled": true,
"python.linting.pylintEnabled": true,
"python.linting.mypyEnabled": true,
"python.unitTest.pyTestEnabled": true,
"python.unitTest.pyTestArgs": [
"-x"
],
"python.venvPath": "~/.pyvenv",
"search.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.pyc": true,
"**/__pycache__": true,
"**/.mypy_cache": true,
"**/.idea": true,
"**/.tox": true,
"**/.venv": true,
"**/venv": true,
"**/.eggs": true,
"build/": true
},
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.scrollback": 50000,
"typescript.updateImportsOnFileMove.enabled": "always",
"workbench.editor.tabSizing": "shrink",
"workbench.settings.editor": "json",
"vim.hlsearch": true,
"vim.incsearch": true,
}