Skip to content

Commit

Permalink
fix(linting): fix tslinting includes and excludes
Browse files Browse the repository at this point in the history
  • Loading branch information
johnny-cit committed Nov 20, 2019
1 parent 7490eb8 commit dfea087
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
"prepublishOnly": "npm run build",
"test": "nyc ava",
"test:watch": "ava --watch",
"tslint": "tslint -c tslint.json -p tsconfig.json **/*.ts",
"tslint": "tslint -c tslint.json -p tsconfig.json src/**/*.ts",
"watch": "tsc -w"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"commit-msg": "npm run tslint && commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run pre-push"
}
},
Expand Down

0 comments on commit dfea087

Please sign in to comment.