Changeset View
Changeset View
Standalone View
Standalone View
src/configuration/ArcanistSettings.php
| Show First 20 Lines • Show All 74 Lines • ▼ Show 20 Lines | $legacy_builtins = array( | ||||
| 'arc.land.onto.default' => array( | 'arc.land.onto.default' => array( | ||||
| 'type' => 'string', | 'type' => 'string', | ||||
| 'help' => pht( | 'help' => pht( | ||||
| 'The name of the default branch to land changes onto when '. | 'The name of the default branch to land changes onto when '. | ||||
| '`%s` is run.', | '`%s` is run.', | ||||
| 'arc land'), | 'arc land'), | ||||
| 'example' => '"develop"', | 'example' => '"develop"', | ||||
| ), | ), | ||||
| 'arc.lint.cache' => array( | |||||
| 'type' => 'bool', | |||||
| 'help' => pht( | |||||
| 'Enable the lint cache by default. When enabled, `%s` attempts to '. | |||||
| 'use cached results if possible. Currently, the cache is not always '. | |||||
| 'invalidated correctly and may cause `%s` to report incorrect '. | |||||
| 'results, particularly while developing linters. This is probably '. | |||||
| 'worth enabling only if your linters are very slow.', | |||||
| 'arc lint', | |||||
| 'arc lint'), | |||||
| 'default' => false, | |||||
| 'example' => 'false', | |||||
| ), | |||||
| 'history.immutable' => array( | 'history.immutable' => array( | ||||
| 'type' => 'bool', | 'type' => 'bool', | ||||
| 'legacy' => 'immutable_history', | 'legacy' => 'immutable_history', | ||||
| 'help' => pht( | 'help' => pht( | ||||
| 'If true, %s will never change repository history (e.g., through '. | 'If true, %s will never change repository history (e.g., through '. | ||||
| 'amending or rebasing). Defaults to true in Mercurial and false in '. | 'amending or rebasing). Defaults to true in Mercurial and false in '. | ||||
| 'Git. This setting has no effect in Subversion.', | 'Git. This setting has no effect in Subversion.', | ||||
| 'arc'), | 'arc'), | ||||
| ▲ Show 20 Lines • Show All 250 Lines • Show Last 20 Lines | |||||