-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bump deps 2024 #160
bump deps 2024 #160
Conversation
odsod
commented
Jul 8, 2024
- chore: update CODEOWNERS
- feat: bump deps 2024
Moving over for ongoing maintenance in Platform Engineering.
.sage/main.go
Outdated
sg.SerialDeps(ctx, Proto.All, TypescriptLint) | ||
sg.SerialDeps(ctx, GoModTidy, GitVerifyNoDiff) | ||
return nil | ||
} | ||
|
||
func FormatYAML(ctx context.Context) error { | ||
func FormatYaml(ctx context.Context) error { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
YAML is an acronym. The general Go guideline is to make it uppercase.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
copy pasted this from the Sage example: https://github.com/einride/sage/blob/master/example/.sage/main.go#L72 - we typically break convention here to make the generated kebab-case always consistent
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The kebab case should be correctly generated (as noted by the fact the makefile target hasn't changed) so why do we want to break convention? Maybe we can instead fix the Sage target?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sounds good, updated