From ad35bf0bc8c650c7b6b4582eba8922ee9580b2b7 Mon Sep 17 00:00:00 2001 From: Beau Gunderson Date: Wed, 6 May 2015 00:58:40 -0700 Subject: [PATCH] Don't run tests with the user's global .eslintrc If the user has a $HOME/.eslintrc it will be read and merged with the .eslintrc in this directory; this pull request disables that behavior so that only the project rules are applied. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index cec72b7..b611f1f 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "a documentation generator", "main": "index.js", "scripts": { - "test": "eslint index.js test/*.js test/streams/*.js && prova test/*.js test/streams/*.js", + "test": "eslint --no-eslintrc -c .eslintrc index.js test/*.js test/streams/*.js && prova test/*.js test/streams/*.js", "cover": "istanbul cover prova test/*.js test/streams/*.js --dir $CIRCLE_ARTIFACTS" }, "bin": {