Merge branch 'master' into fix-openssl

This commit is contained in:
Jean-Michel Picod
2020-02-20 16:32:46 +01:00
committed by GitHub
3 changed files with 334 additions and 341 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
{
"recommendations": [
"davidanson.vscode-markdownlint",
"rust-lang.rust"
"rust-lang.rust",
"ms-python.python"
]
}
+14 -1
View File
@@ -1,7 +1,20 @@
{
"editor.detectIndentation": true,
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.insertSpaces": true,
"editor.tabSize": 4,
"rust-client.channel": "nightly",
// The toolchain is updated from time to time so let's make sure that RLS is updated too
"rust-client.updateOnStartup": true,
"rust.clippy_preference": "on"
"rust.clippy_preference": "on",
// Try to make VSCode formating as close as possible to the Google style.
"python.formatting.provider": "yapf",
"python.formatting.yapfArgs": [
"--style=chromium"
],
"[python]": {
"editor.tabSize": 2
},
}
+318 -339
View File
File diff suppressed because it is too large Load Diff