From c0c0eb0550288ba5278fc5e90e98723a202e1ba0 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Thu, 14 Dec 2017 10:20:07 -0500 Subject: [PATCH] fix eslint path --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fb163f727..c400bb0f4 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "2.6.1", "description": "Embark is a framework that allows you to easily develop and deploy DApps", "scripts": { - "lint": "./node_modules/.bin/eslint lib/", + "lint": "./node_modules/eslint/bin/eslint.js lib/", "test": "mocha test/ --no-timeouts", "testdapp": "cd test_app/ && npm install && ../bin/embark test", "fulltest": "npm run lint && npm run test && npm run testdapp",