mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-04-06 09:28:23 +02:00
Update flags for coffeelint
Summary: According to `coffeelint --help` (with an up-to-date version of `coffeelint`, version 1.8.1) , `--nocolor` is deprecated in favor of `--color=never`. According to the [[http://www.coffeelint.org/#changelog | changelog]], `--nocolor` was deprecated in v1.6.0. Test Plan: `arc lint` Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11195
This commit is contained in:
parent
f5db41917b
commit
784033dc1a
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ final class ArcanistCoffeeLintLinter extends ArcanistExternalLinter {
|
||||||
protected function getMandatoryFlags() {
|
protected function getMandatoryFlags() {
|
||||||
$options = array(
|
$options = array(
|
||||||
'--reporter=checkstyle',
|
'--reporter=checkstyle',
|
||||||
'--nocolor',
|
'--color=never',
|
||||||
'--quiet',
|
'--quiet',
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue