Skip to content

Commit

Permalink
build: set default formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
neekolas committed Oct 13, 2023
1 parent 4393417 commit 5274efb
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"protoc": {
"compile_on_save": false,
"options": [
"--proto_path=build/tmp/vendor",
]
},
// protolint complains if lines are longer than length 80, display a ruler
"editor.rulers": [80]
"protoc": {
"compile_on_save": false,
"options": ["--proto_path=build/tmp/vendor"]
},
"[proto3]": {
"editor.defaultFormatter": "bufbuild.vscode-buf",
"editor.formatOnSave": true
},
// protolint complains if lines are longer than length 80, display a ruler
"editor.rulers": [80]
}

0 comments on commit 5274efb

Please sign in to comment.