Skip to content

Commit e91004f

Browse files
authored
Merge pull request #6 from plexsystems/update-vscode
Update vscode dependency
2 parents ccfa46d + a2f5d5b commit e91004f

File tree

8 files changed

+781
-176
lines changed

8 files changed

+781
-176
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ lint:
1616
- SERVICE_NAMES_UPPER_CAMEL_CASE
1717
```
1818
19-
![protobuflintexample](img/protobuflint_demo.gif)
19+
![protobuflintexample](img/protolint_demo.gif)
2020
2121
## Installation
2222

example/.protolint.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
lint:
2+
rules:
3+
no_default: true
4+
5+
add:
6+
- MESSAGE_NAMES_UPPER_CAMEL_CASE
7+
- SERVICE_NAMES_UPPER_CAMEL_CASE

example/foo.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
syntax = "proto3";
2+
3+
package service;
4+
5+
service myService { }

example/nested/bar.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
syntax = "proto3";
2+
3+
package service;
4+
5+
message myMessage { }

0 commit comments

Comments
 (0)