From f4085fc9cda15cf73650cd851b418a2382b44398 Mon Sep 17 00:00:00 2001 From: Douglas Christopher Wilson Date: Sat, 16 Jul 2016 23:41:44 -0400 Subject: [PATCH] build: pass directory as argument to eslint --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0c28848..f161b67 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "node": ">= 0.6" }, "scripts": { - "lint": "eslint **/*.js", + "lint": "eslint .", "test": "mocha --reporter spec", "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot", "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"