From d66d24ade01e00b686209181f57c30b1de212ded Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristj=C3=A1n=20Oddsson?= Date: Thu, 23 May 2019 12:06:39 +0100 Subject: [PATCH] just use github-lint binary as lint script --- package.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 66cbc79..7b4ab58 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "repository": "github/hotkey", "scripts": { "build": "rollup -c && cp src/index.js.flow dist/index.esm.js.flow && cp src/index.js.flow dist/index.umd.js.flow", - "lint": "github-lint && flow", + "lint": "github-lint", "test": "karma start test/karma.config.js", "clean": "rm -rf dist", "prebuild": "npm run clean && npm run lint && mkdir dist", @@ -37,5 +37,8 @@ "mocha": "^5.2.0", "rollup": "^1.1.0", "rollup-plugin-babel": "^4.3.0" - } + }, + "eslintIgnore": [ + "dist/" + ] }