Changeset View
Changeset View
Standalone View
Standalone View
src/configuration/ArcanistSettings.php
| Show All 15 Lines | return array( | ||||
| 'base' => array( | 'base' => array( | ||||
| 'type' => 'string', | 'type' => 'string', | ||||
| 'help' => pht( | 'help' => pht( | ||||
| 'Base commit ruleset to invoke when determining the start of a '. | 'Base commit ruleset to invoke when determining the start of a '. | ||||
| 'commit range. See "Arcanist User Guide: Commit Ranges" for '. | 'commit range. See "Arcanist User Guide: Commit Ranges" for '. | ||||
| 'details.'), | 'details.'), | ||||
| 'example' => '"arc:amended, arc:prompt"', | 'example' => '"arc:amended, arc:prompt"', | ||||
| ), | ), | ||||
| 'generated-paths' => array( | |||||
| 'type' => 'list<regex>', | |||||
| 'help' => pht( | |||||
| 'Paths that are generated. These paths are not normally useful for '. | |||||
| 'code review and will be shown as collapsed in the Differential UI.'), | |||||
| 'default' => array(), | |||||
| 'example' => '["(^src/__phutil_library_map__\\.php$)"]', | |||||
| ), | |||||
| 'load' => array( | 'load' => array( | ||||
| 'type' => 'list', | 'type' => 'list', | ||||
| 'legacy' => 'phutil_libraries', | 'legacy' => 'phutil_libraries', | ||||
| 'help' => pht( | 'help' => pht( | ||||
| 'A list of paths to phutil libraries that should be loaded at '. | 'A list of paths to phutil libraries that should be loaded at '. | ||||
| 'startup. This can be used to make classes available, like lint '. | 'startup. This can be used to make classes available, like lint '. | ||||
| 'or unit test engines.'), | 'or unit test engines.'), | ||||
| 'default' => array(), | 'default' => array(), | ||||
| ▲ Show 20 Lines • Show All 307 Lines • Show Last 20 Lines | |||||