Merge pull request #760 from quicktype/run-tslint-in-ci

Run TSLint when testing.  Fixes #758
This commit is contained in:
Mark Probst 2018-04-05 13:32:02 -07:00 коммит произвёл GitHub
Родитель a7d6865127 eeb9ef89a6
Коммит 149b50e615
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -9,10 +9,10 @@
"pub": "script/publish.sh",
"prepare": "npm run build",
"build": "script/build.ts",
"test": "npm run build && jest && script/test",
"test": "npm run build && npm run tslint && jest && script/test",
"start": "script/watch",
"pkg": "script/make-pkgs.sh",
"tslint": "tslint --project src"
"tslint": "tslint --project src --exclude 'src/get-stream/**' --exclude 'src/__tests__/**'"
},
"dependencies": {
"chalk": "^2.1.0",