Page MenuHomePhabricator

Allow external linters to operate on multiple paths in batches
AbandonedPublic

Authored by joshuaspence on Feb 14 2017, 3:36 AM.
Tags
None
Referenced Files
F13257792: D17350.diff
Sun, May 26, 4:55 AM
F13209874: D17350.id.diff
Fri, May 17, 2:42 AM
F13193017: D17350.diff
Sun, May 12, 11:36 AM
Unknown Object (File)
Mon, May 6, 8:24 AM
Unknown Object (File)
Sat, May 4, 10:06 AM
Unknown Object (File)
Apr 19 2024, 12:43 PM
Unknown Object (File)
Apr 19 2024, 2:33 AM
Unknown Object (File)
Apr 4 2024, 4:32 PM
Subscribers

Details

Reviewers
epriestley
Group Reviewers
Blessed Reviewers
Summary

Some linters have a high startup cost, such that the time required to start the external tool are unproportionally high compared to the amount of time required to actually lint the file contents. A good example is ESLint, which has been reported internally to be nine times slower when run through arc lint compared to running eslint directly.

I think that the best solution here is to allow paths to be passed to external linters in batches.

Test Plan

This needs some more work, but I wanted to know what @epriestly thought before I continued working on it. With a batch-size of 20, the time required to run arc lint on 60 JavaScript files reduced from 30 seconds to 7 seconds locally.

Diff Detail

Repository
rARC Arcanist
Branch
master
Lint
Lint Passed
Unit
Test Failures
Build Status
Buildable 15623
Build 20619: Run Core Tests
Build 20618: arc lint + arc unit

Unit TestsFailed

TimeTest
333 msArcanistJSHintLinterTestCase::Unknown Unit Message ("")
Assertion failed, expected values to be equal (at ArcanistLinterTestCase.php:131): Expect one result returned by linter. Expected: 1 Actual: 2
126 msArcanistPhpLinterTestCase::Unknown Unit Message ("")
Assertion failed, expected values to be equal (at ArcanistLinterTestCase.php:131): Expect one result returned by linter. Expected: 1 Actual: 2
10 msArcanistChmodLinterTestCase::Unknown Unit Message ("")
5 assertions passed.
0 msArcanistClosureLinterTestCase::Unknown Unit Message ("")
1 assertion passed.
0 msArcanistCpplintLinterTestCase::Unknown Unit Message ("")
1 assertion passed.
View Full Test Results (2 Failed · 19 Passed · 33 Skipped)

Event Timeline

joshuaspence retitled this revision from Allow external linters to operate on multiple paths to Allow external linters to operate on multiple paths in batches.Feb 14 2017, 4:36 AM

I can just do this with D19730 instead.