Changeset View
Changeset View
Standalone View
Standalone View
src/lint/linter/ArcanistGoLintLinter.php
| Show All 21 Lines | public function getLinterConfigurationName() { | ||||
| return 'golint'; | return 'golint'; | ||||
| } | } | ||||
| public function getDefaultBinary() { | public function getDefaultBinary() { | ||||
| return 'golint'; | return 'golint'; | ||||
| } | } | ||||
| public function getInstallInstructions() { | public function getInstallInstructions() { | ||||
| return pht('Install Golint using `go get github.com/golang/lint/golint`.'); | return pht( | ||||
| 'Install Golint using `%s`.', | |||||
| 'go get github.com/golang/lint/golint'); | |||||
| } | } | ||||
| public function shouldExpectCommandErrors() { | public function shouldExpectCommandErrors() { | ||||
| return false; | return false; | ||||
| } | } | ||||
| protected function canCustomizeLintSeverities() { | protected function canCustomizeLintSeverities() { | ||||
| return true; | return true; | ||||
| Show All 26 Lines | |||||