 0a62f13464
			
		
	
	0a62f13464
	
	
	
		
			
			Summary: Ran `arc lint --apply-patches --everything` over rP, mainly to change double quotes to single quotes where appropriate. These changes also validate that the `ArcanistXHPASTLinter::LINT_DOUBLE_QUOTE` rule is working as expected. Test Plan: Eyeballed it. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin, hach-que Differential Revision: https://secure.phabricator.com/D9431
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.5 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.',
 | |
|     ),
 | |
|     array(
 | |
|       'name' => 'blame',
 | |
|       'help' => 'Assign lint errors to authors who last modified the line.',
 | |
|     ),
 | |
|   ));
 | |
| 
 | |
| 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'))
 | |
|   ->setNeedsBlame($args->getArg('blame'))
 | |
|   ->run('.');
 | |
| 
 | |
| echo "\nProcessed {$count} files.\n";
 |