From 5f1beddfefae7a34141895d9fa4b40c97279e8a1 Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Wed, 18 Oct 2017 22:09:45 +0200 Subject: [PATCH] add eslintignore file --- .eslintignore | 3 +++ package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .eslintignore diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 00000000..3fa53299 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,3 @@ +node_modules +coverage/ +build/ \ No newline at end of file diff --git a/package.json b/package.json index 2f4b33dc..9a418402 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "scripts": { "build": "babel lib -d build", "build:watch": "babel lib -w -d build", - "lint": "eslint lib/**; exit 0", + "lint": "eslint .", "lint:watch": "esw -w lib/**", "prepublish": "npm run build" },