mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-10 08:52:39 +01:00
Pass --error-level=all
to puppet-lint
Summary: Without explicitly passing `--error-level=all` to `puppet-lint`, the configuration file for `puppet-lint` could contain `--error-level=error`. This would limit the ability of `arc lint` to detect linter issues and therefore we should override this flag from the command line explicitly. Test Plan: This is mostly theoretical. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11316
This commit is contained in:
parent
fa37d3135f
commit
ce7e8f28f5
1 changed files with 8 additions and 6 deletions
|
@ -58,12 +58,14 @@ final class ArcanistPuppetLintLinter extends ArcanistExternalLinter {
|
|||
}
|
||||
|
||||
protected function getMandatoryFlags() {
|
||||
return array(sprintf('--log-format=%s', implode('|', array(
|
||||
'%{linenumber}',
|
||||
'%{column}',
|
||||
'%{kind}',
|
||||
'%{check}',
|
||||
'%{message}',
|
||||
return array(
|
||||
'--error-level=all',
|
||||
sprintf('--log-format=%s', implode('|', array(
|
||||
'%{linenumber}',
|
||||
'%{column}',
|
||||
'%{kind}',
|
||||
'%{check}',
|
||||
'%{message}',
|
||||
))),
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue