1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-09-19 16:38:51 +02:00

Don't support severity customization in pyflakes

Summary: Pyflakes doesn't have any message codes, so we can't do anything with severities.

Test Plan: Ran `arc lint` with severities on one of these linters, got an error.

Reviewers: joshuaspence, btrahan

Reviewed By: btrahan

Subscribers: epriestley

Differential Revision: https://secure.phabricator.com/D9222
This commit is contained in:
epriestley 2014-05-20 12:44:55 -07:00
parent 104219dd62
commit a19503bb59

View file

@ -99,4 +99,8 @@ final class ArcanistPyFlakesLinter extends ArcanistExternalLinter {
return $messages;
}
protected function canCustomizeLintSeverities() {
return false;
}
}