Skip to content

Commit

Permalink
Merge pull request #19 from al/doc/readme-updates
Browse files Browse the repository at this point in the history
doc: Minor README.md updates
  • Loading branch information
al authored Jul 25, 2024
2 parents faf46db + 27b8f8a commit d098a18
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,5 +114,6 @@ pnpm spelling:fix
### Other Notable Tools

- Git hooks are managed by [Husky](https://typicode.github.io/husky/).
- Commit message linting is provided by [commitlint](https://github.com/conventional-changelog/commitlint?tab=readme-ov-file). Messages should conform to the [Conventional Commit](https://www.conventionalcommits.org/en/v1.0.0/) specification.
- Commit message linting is provided by [commitlint](https://github.com/conventional-changelog/commitlint?tab=readme-ov-file). Messages should conform to the [Conventional Commit](https://www.conventionalcommits.org/en/v1.0.0/) specification. See [.commitlintrc.yaml](.commitlintrc.yaml) for details.
- Git branch name linting is provided by [branch-name-lint](https://github.com/barzik/branch-name-lint) (actually we use [a fork](https://github.com/al/branch-name-lint/tree/integration/error-handling-issues) that we currently maintain). See [.branch-name-lint.json](.branch-name-lint.json) for details.
- [lint-staged](https://github.com/lint-staged/lint-staged) ensures that pre-commit checks (linting, formatting, and spell checking) are only run on staged files.
2 changes: 1 addition & 1 deletion cspell.config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ ignorePaths:
ignoreWords:
- anticsrf
- argjson
- commitlintrc
- creativecommons
- elif
- esac
Expand All @@ -23,7 +24,6 @@ ignoreWords:
- inputmask
- JSPCA
- JSPCA's
- lintstagedrc
- lionels
- lionelslegacyjersey
- Lucida
Expand Down
2 changes: 1 addition & 1 deletion src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const router = createRouter({
scrollBehavior,
})

router.beforeEach((to, from, next) => {
router.beforeEach((_to, _from, next) => {
const redirectPath = sessionStorage.getItem('redirectPath')
if (redirectPath) {
sessionStorage.removeItem('redirectPath')
Expand Down

0 comments on commit d098a18

Please sign in to comment.