From bd7d310019df0a9419f41d602b2d6db961e17072 Mon Sep 17 00:00:00 2001 From: Joe Matthews <14097616+joematthews@users.noreply.github.com> Date: Fri, 1 Mar 2024 23:53:47 -0600 Subject: [PATCH] docs: add stackblitz link and fix broken link to commitizen --- README.md | 4 ++-- tsconfig.json | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d069258..480e6ae 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This is an opinionated Angular starter project that enforces best practices and provides a robust foundation for building modern, scalable web applications using Angular and its ecosystem of tools and libraries. Please feel free to use this as-is, or as inspiration, for your next Angular project ❤️ - +You can run and explore extreme-angular on StackBlitz: https://stackblitz.com/github/joematthews/extreme-angular?preset=node > [!NOTE] > If you run into _any issues at all_ with installing, updating, or using extreme-angular, then please search through the [issues](https://github.com/joematthews/extreme-angular/issues). If you do not see a similar issue, then please create a new issue -- thank you! 🙏 @@ -22,7 +22,7 @@ This is an opinionated Angular starter project that enforces best practices and - [Stylelint](#stylelint) - [VSCode](#vscode) - [Code Spell Checker](#code-spell-checker) - - [Commitizen](#commitizen) + - [Commitizen & Commitlint](#commitizen--commitlint) - [Husky & Lint-Staged](#husky--lint-staged) - [Notes directory](#notes-directory) - [Updating](#updating) diff --git a/tsconfig.json b/tsconfig.json index aea7e21..e9a5cca 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,6 +9,7 @@ "noUnusedLocals": true, "noUnusedParameters": true, "noUncheckedIndexedAccess": true, + "noImplicitAny": true, "noImplicitOverride": true, "noPropertyAccessFromIndexSignature": true, "noImplicitReturns": true,