mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42:41 +01:00
Don't explicitly use an interpreter for pep8
Summary: Depends on D9430. If we are using the system installation of `pep8`, then it probably unnecessary (and possibly wrong) to specify `python2.6` as the default interpreter. Test Plan: Ran `arc unit`. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: vrusinov, epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9474
This commit is contained in:
parent
5b2571f5ae
commit
25855c4427
1 changed files with 0 additions and 8 deletions
|
@ -31,14 +31,6 @@ final class ArcanistPEP8Linter extends ArcanistExternalLinter {
|
||||||
return $this->getDeprecatedConfiguration('lint.pep8.options', array());
|
return $this->getDeprecatedConfiguration('lint.pep8.options', array());
|
||||||
}
|
}
|
||||||
|
|
||||||
public function shouldUseInterpreter() {
|
|
||||||
return ($this->getDefaultBinary() !== 'pep8');
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getDefaultInterpreter() {
|
|
||||||
return 'python2.6';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getDefaultBinary() {
|
public function getDefaultBinary() {
|
||||||
$prefix = $this->getDeprecatedConfiguration('lint.pep8.prefix');
|
$prefix = $this->getDeprecatedConfiguration('lint.pep8.prefix');
|
||||||
$bin = $this->getDeprecatedConfiguration('lint.pep8.bin', 'pep8');
|
$bin = $this->getDeprecatedConfiguration('lint.pep8.bin', 'pep8');
|
||||||
|
|
Loading…
Reference in a new issue