From f28a35d88affbb21a55757db403714d34d68076e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abdo=CC=81n=20Rodri=CC=81guez=20Davila?= Date: Tue, 7 Apr 2020 11:54:22 +0200 Subject: [PATCH] Split lint script --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index b76451a..16efefc 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,9 @@ "scripts": { "build": "tsc", "build:watch": "tsc --watch", - "lint": "lit-analyzer && eslint 'src/**/*.ts'", + "lint": "npm run lint:lit-analyzer && npm run lint:eslint", + "lint:eslint": "eslint 'src/**/*.ts'", + "lint:lit-analyzer": "lit-analyzer", "format": "prettier src/* --write", "docs": "npm run build && npm run analyze && npm run docs:build && npm run docs:assets && npm run docs:gen", "docs:gen": "eleventy --config=.eleventy.cjs",