github.com/serversong/goreporter@v0.0.0-20200325104552-3cfaf44fd178/engine/const.go (about)

     1  package engine
     2  
     3  // Text display description and logo.
     4  const (
     5  	headerTpl = `
     6  
     7                                                                              _/
     8       _/_/_/    _/_/    _/  _/_/    _/_/    _/_/_/      _/_/    _/  _/_/  _/_/_/_/    _/_/    _/  _/_/
     9    _/    _/  _/    _/  _/_/      _/_/_/_/  _/    _/  _/    _/  _/_/        _/      _/_/_/_/  _/_/
    10   _/    _/  _/    _/  _/        _/        _/    _/  _/    _/  _/          _/      _/        _/
    11    _/_/_/    _/_/    _/          _/_/_/  _/_/_/      _/_/    _/            _/_/    _/_/_/  _/
    12       _/                                _/
    13  _/_/                                  _/
    14  
    15  	Project: %s
    16  	Score: %d
    17  	Grade: %d
    18  	Time: %s
    19  	Issues: %d
    20  
    21  	`
    22  	metricsHeaderTpl = `>> %s Linter %s find:`
    23  	summaryHeaderTpl = ` %s: %s`
    24  	errorInfoTpl     = `  %s at line %d`
    25  )