mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
ef8c43ac2a
Test Plan: Ran it. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2038 Differential Revision: https://secure.phabricator.com/D3933
53 lines
1.3 KiB
PHP
Executable file
53 lines
1.3 KiB
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
require_once dirname(__FILE__).'/../__init_script__.php';
|
|
|
|
$synopsis = <<<EOT
|
|
**save_lint.php**
|
|
Discover lint problems and save them to database so that they can
|
|
be displayed in Diffusion.
|
|
|
|
EOT;
|
|
|
|
$args = id(new PhutilArgumentParser($argv))
|
|
->setTagline('save lint errors to database')
|
|
->setSynopsis($synopsis)
|
|
->parseStandardArguments()
|
|
->parse(array(
|
|
array(
|
|
'name' => 'all',
|
|
'help' =>
|
|
"Discover problems in the whole repository instead of just changes ".
|
|
"since the last run.",
|
|
),
|
|
array(
|
|
'name' => 'arc',
|
|
'param' => 'path',
|
|
'default' => 'arc',
|
|
'help' => "Path to Arcanist executable.",
|
|
),
|
|
array(
|
|
'name' => 'severity',
|
|
'param' => 'string',
|
|
'default' => ArcanistLintSeverity::SEVERITY_ADVICE,
|
|
'help' => "Minimum severity, one of ArcanistLintSeverity constants.",
|
|
),
|
|
array(
|
|
'name' => 'chunk-size',
|
|
'param' => 'number',
|
|
'default' => 256,
|
|
'help' => "Number of paths passed to `arc` at once.",
|
|
),
|
|
));
|
|
|
|
echo "Saving lint errors to database...\n";
|
|
|
|
$count = id(new DiffusionLintSaveRunner())
|
|
->setAll($args->getArg('all', false))
|
|
->setArc($args->getArg('arc'))
|
|
->setSeverity($args->getArg('severity'))
|
|
->setChunkSize($args->getArg('chunk-size'))
|
|
->run('.');
|
|
|
|
echo "\nProcessed {$count} files.\n";
|