1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-22 14:52:40 +01:00

Ignore environment variables for coffeelint

Summary: According to `coffeelint --help`, `--noconfig` ignores the environment variable `COFFEELINT_CONFIG`. This means that `arc lint` will behave more consistently across developer workstations by forcing configuration to be specified with `coffeelint.config` instead of with environment variables.

Test Plan: This is mostly theoretical.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D11196
This commit is contained in:
Joshua Spence 2015-01-05 06:40:07 +11:00
parent 784033dc1a
commit f6b3f3c46a

View file

@ -61,6 +61,7 @@ final class ArcanistCoffeeLintLinter extends ArcanistExternalLinter {
$options = array(
'--reporter=checkstyle',
'--color=never',
'--noconfig',
'--quiet',
);