From e406917ff894ba12f8cc60726aa4fa7bb2e72c2a Mon Sep 17 00:00:00 2001 From: Marty Alcala Date: Sat, 10 Mar 2018 17:41:44 -0500 Subject: [PATCH] build(tslint): remove unnecessary path, let tslint use tsconfig --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 27dbf60..79477a3 100644 --- a/package.json +++ b/package.json @@ -38,9 +38,9 @@ "build:module": "tsc -p tsconfig.module.json", "fix": "run-s fix:*", "fix:prettier": "prettier 'src/**/*.ts' --write", - "fix:tslint": "tslint --fix --project . src/**/*.ts", + "fix:tslint": "tslint --fix --project .", "test": "run-s build test:*", - "test:lint": "tslint --project . src/**/*.ts && prettier 'src/**/*.ts' --list-different", + "test:lint": "tslint --project . && prettier 'src/**/*.ts' --list-different", "test:unit": "nyc --silent ava", "test:nsp": "nsp check", "watch": "run-s clean build:main && run-p 'build:main -- -w' 'test:unit -- --watch'",