diff --git a/README.md b/README.md index d4fa0ed..09f5b28 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ Each Pull Request will contain explanation and steps taken to complete a feature - [Add prettier config](https://github.com/brunolm/angular-how-to/pull/10) - [Prettier git hook pre-commit](https://github.com/brunolm/angular-how-to/pull/18) - [Running prettier on ts, tsx, scss, md](https://github.com/brunolm/angular-how-to/pull/20) +- [Sort imports, autofix tslint](https://github.com/brunolm/angular-how-to/pull/21) ### Upgrades diff --git a/package.json b/package.json index 95262a3..b3ac062 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "lint-staged": { "*.{ts,tsx,scss,md}": [ "prettier --write", + "npm run lint angular-how-to -- --fix", "git add" ] },