UNPKG

295 Bapplication/x-shView Raw
1#!/bin/bash
2
3# Format code.
4PRETTIER_CONFIG=$PWD/node_modules/@tdb/typescript/.prettierrc
5cp $PRETTIER_CONFIG $PWD/.prettierrc
6node ./node_modules/prettier/bin-prettier --write 'code/src/**/*.ts{,x}'
7
8# Lint.
9node ./node_modules/tslint/bin/tslint 'code/src/**/*.ts{,x}' --format verbose --fix $@
\No newline at end of file