Fix arc lint (should fix #238)

Summary: See https://secure.phabricator.com/D9114

Test Plan: arc lint

Reviewers: yhchiang

Reviewed By: yhchiang

Subscribers: leveldb

Differential Revision: https://reviews.facebook.net/D24195
This commit is contained in:
Igor Canadi 2014-09-29 15:10:37 -07:00
parent 637f89179f
commit 56ebd40877

View File

@ -36,7 +36,7 @@ class FacebookFbcodeLintEngine extends ArcanistLintEngine {
));
$linters[] = $java_text_linter;
$pep8_options = $this->getPEP8WithTextOptions().',E302';
$pep8_options = '--ignore=E101,E501,W291,W292,W293,E302';
$python_linter = new ArcanistPEP8Linter();
$python_linter->setConfig(array('options' => $pep8_options));