From 5ad7019ad12983bdb9872cf9c06d2235bbc28a33 Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Wed, 10 Jun 2020 05:18:34 -0300 Subject: [PATCH] remove quotes wrapping eslint path `npm run lint` fails because eslint does not like the `'`s wrapping its target path. Removing the single quotes fixes `npm run lint` --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 72a7225f..0ad9d24d 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "build:watch": "tsc --watch", "clean": "rimraf my-element.{d.ts,d.ts.map,js,js.map} test/my-element.{d.ts,d.ts.map,js,js.map} test/my-element_test.{d.ts,d.ts.map,js,js.map}", "lint": "npm run lint:lit-analyzer && npm run lint:eslint", - "lint:eslint": "eslint 'src/**/*.ts'", + "lint:eslint": "eslint src/**/*.ts", "lint:lit-analyzer": "lit-analyzer", "format": "prettier src/* --write", "docs": "npm run docs:clean && npm run build && npm run analyze && npm run docs:build && npm run docs:assets && npm run docs:gen",