-
Notifications
You must be signed in to change notification settings - Fork 2
/
vscode.settings.json
130 lines (129 loc) · 3.9 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
{
"editor.minimap.enabled": false,
"[html]": {
"editor.formatOnSave": false
},
"[javascript]": {
"editor.formatOnSave": false
},
"editor.formatOnPaste": false,
"editor.fontSize": 18,
"editor.renderLineHighlight": "none",
"editor.renderIndentGuides": false,
"workbench.colorTheme": "Base16 Ocean Dark",
"workbench.fontAliasing": "antialiased",
"editor.fontFamily": "Source Code Pro",
"window.zoomLevel": 1,
"git.confirmSync": false,
"files.exclude": {
"**/.ipynb_checkpoints": true,
"**/_trial_temp": true,
"**/.cache": true,
"**/*.pyc": true,
"**/*.pid": true,
"**/node_modules": true,
".vagrant": true,
"**/*.js.map": true,
},
"search.exclude": {
"**/.ipynb_checkpoints": true,
"**/_trial_temp": true,
"**/.cache": true,
"**/*.pyc": true,
"**/*.pid": true,
"**/node_modules": true,
".vagrant": true,
".cache": true,
".vscode": true,
"**/*.js.map": true,
},
"python.pythonPath": "/usr/local/opt/python@3/bin/python3",
"python.formatting.provider": "none",
"python.linting.lintOnSave": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Path": "/usr/local/bin/flake8",
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--max-line-length=160",
"--ignore=E309,E305,E302,E501,W293,W503,W504"
],
"material-icon-theme.showUpdateMessage": false,
"extensions.ignoreRecommendations": false,
"prettier.singleQuote": true,
"prettier.tabWidth": 2,
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"vue-html": "html",
"vue": "html"
},
"code-runner.saveFileBeforeRun": true,
"code-runner.enableAppInsights": false,
"code-runner.clearPreviousOutput": true,
"code-runner.executorMap": {
"python": "/usr/local/opt/python@3/bin/python3"
},
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.associations": {
"*.mak": "html"
},
"workbench.startupEditor": "newUntitledFile",
"search.useIgnoreFiles": false,
"terminal.external.osxExec": "iTerm2.app",
"terminal.integrated.shell.osx": "zsh",
"go.useLanguageServer": true,
"go.gocodeAutoBuild": true,
"[go]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"[swift]": {
"editor.formatOnSave": true
},
"[rust]": {
"editor.formatOnSave": true
},
"shellcheck.exclude": [
"SC2039"
],
"vsicons.dontShowNewVersionMessage": true,
"python.linting.mypyEnabled": true,
"markdownlint.config": {
"MD013": false,
"MD024": {
"siblings_only": true
}
},
"python.pipenvPath": "/usr/local/bin/pipenv",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"workbench.iconTheme": "vscode-icons",
"workbench.colorCustomizations": {}, // use rubocop for formatting
"yaml.schemas": {
"https://json.schemastore.org/circleciconfig": [".circleci/*.yml"]
},
"yaml.validate": true,
"yaml.format.enable": true,
"markdown.preview.fontSize": 16,
"[markdown]": {
"editor.wordWrap": "on",
"editor.quickSuggestions": false
},
"workbench.editorAssociations": [
],
"sourcekit-lsp.serverPath": "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/sourcekit-lsp",
"php-cs-fixer.executablePath": "php-cs-fixer",
"php-cs-fixer.config": ".php_cs;.php_cs.dist",
"php-cs-fixer.onsave": true,
"terminal.integrated.fontFamily": "PT Mono",
"editor.largeFileOptimizations": false,
"editor.fontLigatures": true,
"swiftformat.enable": true,
"swiftformat.path": "/usr/local/bin/swiftformat",
"swiftformat.configSearchPaths": [
".swiftformat"
]
}