From 5bda328145df756afb27362f507591b17b091474 Mon Sep 17 00:00:00 2001 From: squidfunk Date: Fri, 26 Feb 2021 16:46:14 +0100 Subject: [PATCH] Fixed lint script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6ad46e4e7..090c4065d 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "build": "rimraf material && ts-node -T tools/build --optimize", "build:dirty": "ts-node -T tools/build --dirty", "clean": "rimraf material", - "lint": "npm run lint:scss && npm run lint:scss", + "lint": "npm run lint:scss && npm run lint:ts", "lint:scss": "stylelint \"src/assets/**/*.scss\"", "lint:ts": "eslint --cache \"src/**/*.ts\"", "start": "ts-node -T tools/build --verbose --dirty --watch"