abstract public function getKey()
Returns a unique identifier for the linter standard.
string |
abstract public function getName()
Returns a human-readable name for the linter standard.
string |
abstract public function getDescription()
Returns a human-readable description for the linter standard.
string |
abstract public function supportsLinter($linter)
Checks whether the linter standard supports a specified linter.
ArcanistLinter | $linter | The linter which is being configured. |
bool | True if the linter standard supports the specified linter, otherwise false. |
public function getLinterConfiguration()
Get linter configuration.
Returns linter configuration which is passed to ArcanistLinter::setLinterConfigurationValue().
map<string, wild> |
public function getLinterSeverityMap()
Get linter severities.
Returns linter severities which are passed to ArcanistLinter::addCustomSeverityMap().
map |
final public static function getStandard($key, $linter)
Load a linter standard by key.
string | $key | |
ArcanistLinter | $linter |
ArcanistLinterStandard |
final public static function loadAllStandards()
Load all linter standards.
list<ArcanistLinterStandard> |
final public static function loadAllStandardsForLinter($linter)
Load all linter standards which support a specified linter.
ArcanistLinter | $linter |
list<ArcanistLinterStandard> |