From 065b808815ec6cde1d4ae6d10083d76f5b925cc4 Mon Sep 17 00:00:00 2001 From: Ray Schamp Date: Mon, 15 Jul 2019 10:10:52 -0400 Subject: [PATCH] Fix lint script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4f0f26594..e1370e047 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "scripts": { "start": "node ./dev-server/index.js", "test": "npm run test:lint && npm run build && npm run test:tap", - "test:lint": "eslint --ext .js,.jsx,.json", + "test:lint": "eslint . --ext .js,.jsx,.json", "test:smoke": "tap ./test/integration/smoke-testing/*.js --timeout=3600 --no-coverage -R classic", "test:smoke:verbose": "tap ./test/integration/smoke-testing/*.js --timeout=3600 --no-coverage -R spec", "test:smoke:sauce": "SMOKE_REMOTE=true tap ./test/integration/smoke-testing/*.js --timeout=60000 --no-coverage -R classic",