Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14018321
D9674.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
876 B
Referenced Files
None
Subscribers
None
D9674.diff
View Options
diff --git a/src/workflow/ArcanistLintWorkflow.php b/src/workflow/ArcanistLintWorkflow.php
--- a/src/workflow/ArcanistLintWorkflow.php
+++ b/src/workflow/ArcanistLintWorkflow.php
@@ -218,21 +218,7 @@
}
if ($everything) {
- // Recurse through project from root
- switch ($this->getRepositoryApi()->getSourceControlSystemName()) {
- case 'git':
- $filter = '*/.git';
- break;
- case 'svn':
- $filter = '*/.svn';
- break;
- case 'hg':
- $filter = '*/.hg';
- break;
- }
- $paths = id(new FileFinder($working_copy->getProjectRoot()))
- ->excludePath($filter)
- ->find();
+ $paths = iterator_to_array($this->getRepositoryApi()->getAllFiles());
$this->shouldLintAll = true;
} else {
$paths = $this->selectPathsForWorkflow($paths, $rev);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Nov 6, 8:24 AM (6 d, 16 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6732736
Default Alt Text
D9674.diff (876 B)
Attached To
Mode
D9674: Only lint files in the working copy with `arc lint --everything`.
Attached
Detach File
Event Timeline
Log In to Comment