diff --git a/arcanist/linter/MyPyLinter.php b/arcanist/linter/MyPyLinter.php --- a/arcanist/linter/MyPyLinter.php +++ b/arcanist/linter/MyPyLinter.php @@ -25,6 +25,12 @@ return 'mypy'; } + public function getMandatoryFlags() { + return array( + '--show-error-codes', + ); + } + public function getInstallInstructions() { return pht('Please install mypy and make sure it is in your $PATH'); }