mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 14:52:40 +01:00
Minor fixes to arcanist cpplint
Summary: This fixes the regex in "getLintCode..." so that it accepts lint codes such as `build/c++11` which have become valid lint codes in later versions of cpplint. It also corrects the install instructions for the linter (Google's style guide is no longer available on SVN and has been migrated to Github). Test Plan: For the Regex: - Create an .arclint in a project such as: ``` { "linters": { "cpplint": { "type": "cpplint", "severity": { "build/c++11": "advice" } } } } ``` - Run `arc lint` with the existing linter. This should fail. Patch the linter, and this should now be accepted. For the Instructions - Verify the download location `wget https://raw.github.com/google/styleguide/gh-pages/cpplint/cpplint.py` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin Maniphest Tasks: T10118 Differential Revision: https://secure.phabricator.com/D15019
This commit is contained in:
parent
05c12eb9d9
commit
22af67c1c0
1 changed files with 5 additions and 4 deletions
|
@ -19,9 +19,10 @@ final class ArcanistCpplintLinter extends ArcanistExternalLinter {
|
|||
|
||||
public function getInstallInstructions() {
|
||||
return pht(
|
||||
'Install cpplint.py using `%s`.',
|
||||
'wget http://google-styleguide.googlecode.com'.
|
||||
'/svn/trunk/cpplint/cpplint.py');
|
||||
'Install cpplint.py using `%s`, and place it in your path with the'.
|
||||
'appropriate permissions set.',
|
||||
'wget https://raw.github.com'.
|
||||
'/google/styleguide/gh-pages/cpplint/cpplint.py');
|
||||
}
|
||||
|
||||
protected function getDefaultMessageSeverity($code) {
|
||||
|
@ -60,7 +61,7 @@ final class ArcanistCpplintLinter extends ArcanistExternalLinter {
|
|||
}
|
||||
|
||||
protected function getLintCodeFromLinterConfigurationKey($code) {
|
||||
if (!preg_match('@^[a-z_]+/[a-z_]+$@', $code)) {
|
||||
if (!preg_match('@^[a-z_]+/[a-z0-9_+]+$@', $code)) {
|
||||
throw new Exception(
|
||||
pht(
|
||||
'Unrecognized lint message code "%s". Expected a valid cpplint '.
|
||||
|
|
Loading…
Reference in a new issue