gofmt all project files
This commit is contained in:
parent
e0b9309cfc
commit
009a3074fe
11 changed files with 58 additions and 28 deletions
29
.idea/watcherTasks.xml
Normal file
29
.idea/watcherTasks.xml
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectTasksOptions">
|
||||
<TaskOptions isEnabled="true">
|
||||
<option name="arguments" value="fmt $FilePath$" />
|
||||
<option name="checkSyntaxErrors" value="true" />
|
||||
<option name="description" />
|
||||
<option name="exitCodeBehavior" value="ERROR" />
|
||||
<option name="fileExtension" value="go" />
|
||||
<option name="immediateSync" value="false" />
|
||||
<option name="name" value="go fmt" />
|
||||
<option name="output" value="$FilePath$" />
|
||||
<option name="outputFilters">
|
||||
<array />
|
||||
</option>
|
||||
<option name="outputFromStdout" value="false" />
|
||||
<option name="program" value="$GoExecPath$" />
|
||||
<option name="runOnExternalChanges" value="false" />
|
||||
<option name="scopeName" value="Project Files" />
|
||||
<option name="trackOnlyRoot" value="true" />
|
||||
<option name="workingDir" value="$ProjectFileDir$" />
|
||||
<envs>
|
||||
<env name="GOROOT" value="$GOROOT$" />
|
||||
<env name="GOPATH" value="$GOPATH$" />
|
||||
<env name="PATH" value="$GoBinDirs$" />
|
||||
</envs>
|
||||
</TaskOptions>
|
||||
</component>
|
||||
</project>
|
3
ferag.go
3
ferag.go
|
@ -32,8 +32,10 @@ func (fs *FeragString) SetTitleName(titleName string) {
|
|||
}
|
||||
|
||||
func (fs *FeragString) PrintOut() string {
|
||||
// +2440 | first message is the title info
|
||||
info := fs.TitleInfo.Message()
|
||||
|
||||
// +2450 | list of product references
|
||||
for _, pr := range fs.ProductReferences {
|
||||
info += pr.Message()
|
||||
}
|
||||
|
@ -54,6 +56,7 @@ func (fs *FeragString) PrintOut() string {
|
|||
info += re.Message()
|
||||
}
|
||||
|
||||
// +2441 | last message is the corresponding title end
|
||||
info += fs.TitleEnd.Message()
|
||||
return info
|
||||
}
|
||||
|
|
|
@ -72,7 +72,6 @@ func (ti *TitleInfo) PublicationDate() string {
|
|||
return fmt.Sprintf("+95%-6s", ti.publicationDate.Format(dateOutputFormat))
|
||||
}
|
||||
|
||||
|
||||
func (ti *TitleInfo) Message() string {
|
||||
message := ti.FeragMessage.MessageTemplate()
|
||||
return message(&ti.FeragMessage, ti.Payload())
|
||||
|
@ -110,4 +109,3 @@ func NewTitleInfo() *TitleInfo {
|
|||
}
|
||||
return &t
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue