-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
plugins: change project name config tag, add pkg/model/file.ProjectNameMixin
#1609
plugins: change project name config tag, add pkg/model/file.ProjectNameMixin
#1609
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: estroz The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
pkg/model/file/mixins.go
Outdated
// InjectProjectName implements HasProjectName. | ||
func (m *ProjectNameMixin) InjectProjectName(projectName string) { | ||
if m.ProjectName == "" { | ||
m.ProjectName = strings.ToLower(projectName) |
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.
Do we really want to be calling strings.ToLower
at this point? This might be confusing to someone seeing projectName: MyProject
in their PROJECT
file and then seeing myproject
in their scaffolded files.
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.
Do we have any concept of PROJECT
file validation anywhere?
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.
I'm fine with always lowercasing projectName
.
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.
Do we have any concept of PROJECT file validation anywhere
No. This file is assumed to be more or less "valid" after init
.
the Config.ProjectName into any structs that embed this mixin.
2104134
to
f028d0a
Compare
/lgtm |
This PR adds
pkg/model/file.ProjectNameMixin
, which will inject theConfig.ProjectName
into any structs that embed this mixin./cc @joelanford @pwittrock