Skip to content
Snippets Groups Projects
Unverified Commit dfc06633 authored by Jean-Michel Picod's avatar Jean-Michel Picod Committed by GitHub
Browse files

Merge pull request #45 from jmichelp/master

Improve deploy script.
parents ef414bc2 f345a753
No related branches found
No related tags found
No related merge requests found
{ {
"recommendations": [ "recommendations": [
"davidanson.vscode-markdownlint", "davidanson.vscode-markdownlint",
"rust-lang.rust" "rust-lang.rust",
"ms-python.python"
] ]
} }
{ {
"editor.detectIndentation": true,
"editor.formatOnPaste": false,
"editor.formatOnSave": true, "editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.insertSpaces": true,
"editor.tabSize": 4,
"rust-client.channel": "nightly", "rust-client.channel": "nightly",
// The toolchain is updated from time to time so let's make sure that RLS is updated too // The toolchain is updated from time to time so let's make sure that RLS is updated too
"rust-client.updateOnStartup": true, "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
},
} }
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment