-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvscode.settings.json
151 lines (151 loc) · 4.66 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"breadcrumbs.enabled": true,
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "all",
"editor.guides.bracketPairs": true,
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"[ruby]": {
"editor.tabSize": 2,
"editor.insertSpaces": true,
},
"ruby.rubocop.onSave": true,
"ruby.rubocop.executePath": "/Users/ce/.rbenv/shims/",
"ruby.rubocop.suppressRubocopWarnings": false,
"[python]": {
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.formatOnSave": false,
},
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.formatting.provider": "autopep8",
"python.linting.pylintArgs": [
"--generate-members"
],
"python.linting.pycodestyleEnabled": true,
"python.linting.pycodestyleArgs": [
"--ignore=E402",
"--max-line-length=120"
],
"python.formatting.autopep8Args": [
"--ignore",
"E402"
],
"terminal.integrated.inheritEnv": false,
"editor.largeFileOptimizations": false,
"editor.fontSize": 15,
"go.formatTool": "goimports",
"go.useLanguageServer": true,
"go.buildFlags": [
"-tags=dev"
],
"go.testTags": "dev",
"sequencediagrams.diagram.style": "simple",
"python.pythonPath": "/Users/feng/.pyenv/shims/python",
// "oneDarkPro.vivid": true,
"todo-tree.highlights.enabled": false,
"editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"gitlens.advanced.messages": {
"suppressLineUncommittedWarning": true
},
"tabnine.experimentalAutoImports": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"java.semanticHighlighting.enabled": true,
"files.exclude": {
"**/.classpath": true,
"**/.history": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"files.associations": {
"*.hql": "sql",
"*.json": "jsonc"
},
"python.languageServer": "Pylance",
"terminal.integrated.env.linux": {
"PYTHONPATH": "${workspaceFolder}"
},
"jupyter.allowUnauthorizedRemoteConnection": true,
"protoc": {
"compile_on_save": false,
"options": [
"--proto_path=${workspaceRoot}/protos",
"--proto_path=${workspaceRoot}/common/pb",
"--proto_path=${workspaceRoot}/",
"--ruby_out=${workspaceRoot}/",
]
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"go.toolsManagement.autoUpdate": true,
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[ ]",
"[x]"
],
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)",
"C_Cpp.updateChannel": "Insiders",
"[xml]": {
"editor.defaultFormatter": "DotJoshJohnson.xml"
},
"security.workspace.trust.untrustedFiles": "open",
"python.defaultInterpreterPath": "/Users/ce/.pyenv/versions/3.9.4/bin/python",
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"cmake.configureOnOpen": true,
"files.autoSave": "afterDelay",
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": true,
"markdown": true,
"ruby": true,
"go": true
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"gopls": {
"experimentalWorkspaceModule": true,
},
"extension.bracket_char": true,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.unicodeHighlight.invisibleCharacters": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.unicodeHighlight.nonBasicASCII": false,
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"editor.accessibilitySupport": "off",
"notebook.output.textLineLimit": 50,
"workbench.editor.untitled.hint": "hidden",
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}