From c3dc75862a85fcfed4710b3d712503e76193d167 Mon Sep 17 00:00:00 2001 From: Steven Evans Date: Tue, 26 Jun 2018 22:20:26 -0400 Subject: [PATCH] [chore] Chaining all the lint scripts to one easier to run command --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 23a73f0c5..1a037f897 100644 --- a/package.json +++ b/package.json @@ -90,6 +90,7 @@ "start:dev": "webpack-dev-server", "build": "webpack --mode production", "build:dev": "webpack --mode development", + "lint": "npm run lint:typescript & npm run lint:javascript & npm run lint:style", "lint:javascript": "eslint *.js ./src/**/*.js ./tests/**/*.js ./utils/**/*.js", "lint:style": "stylelint ./css/*", "lint:typescript": "tslint --project . --exclude **/*.d.ts --format stylish src/**/*.ts utils/**/*.ts",