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:
parent
784033dc1a
commit
f6b3f3c46a
1 changed files with 1 additions and 0 deletions
|
@ -61,6 +61,7 @@ final class ArcanistCoffeeLintLinter extends ArcanistExternalLinter {
|
||||||
$options = array(
|
$options = array(
|
||||||
'--reporter=checkstyle',
|
'--reporter=checkstyle',
|
||||||
'--color=never',
|
'--color=never',
|
||||||
|
'--noconfig',
|
||||||
'--quiet',
|
'--quiet',
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue