mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-29 18:22:41 +01:00
(stable) Promote 2015 Week 38
This commit is contained in:
commit
b37b2c3034
3 changed files with 10 additions and 4 deletions
|
@ -31,7 +31,13 @@ class ArcanistConfiguration extends Phobject {
|
|||
$command = 'version';
|
||||
}
|
||||
|
||||
return idx($this->buildAllWorkflows(), $command);
|
||||
$workflow = idx($this->buildAllWorkflows(), $command);
|
||||
|
||||
if (!$workflow) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return clone $workflow;
|
||||
}
|
||||
|
||||
public function buildAllWorkflows() {
|
||||
|
|
|
@ -20,11 +20,11 @@ final class ArcanistLesscLinter extends ArcanistExternalLinter {
|
|||
private $strictUnits = false;
|
||||
|
||||
public function getInfoName() {
|
||||
return 'Less';
|
||||
return 'CSS pre-processor';
|
||||
}
|
||||
|
||||
public function getInfoURI() {
|
||||
return 'https://lesscss.org/';
|
||||
return 'http://lesscss.org/';
|
||||
}
|
||||
|
||||
public function getInfoDescription() {
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
final class ArcanistPEP8Linter extends ArcanistExternalLinter {
|
||||
|
||||
public function getInfoName() {
|
||||
return 'pep8';
|
||||
return 'Python PEP 8';
|
||||
}
|
||||
|
||||
public function getInfoURI() {
|
||||
|
|
Loading…
Reference in a new issue