mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-08 16:02:39 +01:00
85141c4d90
Summary: Depends on D21070. Ref T11968. Adds "yield"-aware query classes for parallelizing service calls. These will replace the similar (but not yield-aware) "Hardpoint" classes introduced previously. This is an API change but most of the old classes still exist and still do the same thing, just with more "yield" statements. This just adds a bunch of new code with no callers and no API updates. Test Plan: See future changes. Maniphest Tasks: T11968 Differential Revision: https://secure.phabricator.com/D21071
69 lines
1.3 KiB
Text
69 lines
1.3 KiB
Text
{
|
|
"exclude": [
|
|
"(^externals/)"
|
|
],
|
|
"linters": {
|
|
"chmod": {
|
|
"type": "chmod"
|
|
},
|
|
"filename": {
|
|
"type": "filename"
|
|
},
|
|
"generated": {
|
|
"type": "generated"
|
|
},
|
|
"json": {
|
|
"type": "json",
|
|
"include": [
|
|
"(^resources/arclint/.*\\.arclint\\.example$)",
|
|
"(^\\.arcconfig$)",
|
|
"(^\\.arclint$)",
|
|
"(\\.json$)"
|
|
]
|
|
},
|
|
"merge-conflict": {
|
|
"type": "merge-conflict"
|
|
},
|
|
"nolint": {
|
|
"type": "nolint"
|
|
},
|
|
"phutil-library": {
|
|
"type": "phutil-library",
|
|
"include": "(\\.php$)"
|
|
},
|
|
"spelling": {
|
|
"type": "spelling",
|
|
"exclude": "(^resources/spelling/.*\\.json$)"
|
|
},
|
|
"text": {
|
|
"type": "text",
|
|
"exclude": [
|
|
"(^src/(.*/)?__tests__/[^/]+/.*\\.(txt|json|expect)|/Makefile\\z)"
|
|
]
|
|
},
|
|
"text-without-length": {
|
|
"type": "text",
|
|
"include": [
|
|
"(^src/(.*/)?__tests__/[^/]+/.*\\.(txt|json|expect))"
|
|
],
|
|
"severity": {
|
|
"3": "disabled"
|
|
}
|
|
},
|
|
"text-without-tabs": {
|
|
"type": "text",
|
|
"include": [
|
|
"(/Makefile\\z)"
|
|
],
|
|
"severity": {
|
|
"2": "disabled"
|
|
}
|
|
},
|
|
"xhpast": {
|
|
"type": "xhpast",
|
|
"include": "(\\.php$)",
|
|
"standard": "phutil.xhpast",
|
|
"xhpast.php-version": "5.5.0"
|
|
}
|
|
}
|
|
}
|