Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
mfederowicz committed Nov 1, 2023
1 parent 4f6f50d commit ef34be0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testdata/json-data-format-var-naming.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package fixtures

func foo() string {
customID := "result" // ignore
customVm := "result" // json:{"MATCH": "var customVm should be customVM"}
CUSTOMER_UP := "result" // json:{"MATCH": "don't use ALL_CAPS in Go names; use CamelCase", "Confidence": 0.8}
customID := "result" // ignore
customVm := "result" // json:{"MATCH": "var customVm should be customVM"}
CUSTOMER_UP := "result" // json:{"MATCH": "don't use ALL_CAPS in Go names; use CamelCase", "Confidence": 0.8}
return customId
}

0 comments on commit ef34be0

Please sign in to comment.