Browse Source

.vscode: remove directory (#5626)

pull/5690/head
Tess Rinearson 4 years ago
committed by GitHub
parent
commit
3246283cf2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 8 deletions
  1. +0
    -8
      .vscode/settings.json
  2. +15
    -0
      CONTRIBUTING.md

+ 0
- 8
.vscode/settings.json View File

@ -1,8 +0,0 @@
{
"protoc": {
"options": [
"--proto_path=${workspaceRoot}/proto",
"--proto_path=${workspaceRoot}/third_party/proto"
]
}
}

+ 15
- 0
CONTRIBUTING.md View File

@ -127,6 +127,21 @@ make install
You should now be able to run `make proto-gen` from inside the root Tendermint directory to generate new files from proto files.
### Visual Studio Code
If you are a VS Code user, you may want to add the following to your `.vscode/settings.json`:
```json
{
"protoc": {
"options": [
"--proto_path=${workspaceRoot}/proto",
"--proto_path=${workspaceRoot}/third_party/proto"
]
}
}
```
## Changelog
Every fix, improvement, feature, or breaking change should be made in a


Loading…
Cancel
Save