From a9a8f1baecad69b01725442af1a522c1e457709d Mon Sep 17 00:00:00 2001 From: Felix Becker Date: Mon, 20 Aug 2018 21:48:03 +0200 Subject: [PATCH] chore: run TSLint on all folders Closes #64 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 70f32892..1b2d9261 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "build": "NODE_ENV=production ts-node scripts/build", "graphql": "get-graphql-schema http://localhost:3080/.api/graphql --json | gql2ts -o app/gqlschema.d.ts", "lint": "npm run tslint && npm run stylelint", - "tslint": "tslint -t stylish -c tslint.json -p tsconfig.json 'app/**/*.ts?(x)'", + "tslint": "tslint -t stylish -c tslint.json -p tsconfig.json \"app/**/*.ts?(x)\" \"extension/**/*.ts?(x)\" \"chrome/**/*.ts?(x)\" \"webpack/**/*.ts?(x)\" \"scripts/**/*.ts?(x)\" \"cypress/**/*.ts?(x)\"", "stylelint": "stylelint 'app/**/*.scss'", "clean": "rm -rf build/ dist/ *.zip *.xpi .checksum", "cypress:open": "cypress open",