Skip to content

Commit

Permalink
docs: fix 'commit message convention' link (vuejs#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
swapagarwal authored and yyx990803 committed Oct 5, 2019
1 parent fbabae0 commit 0fe8801
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Hi! I'm really excited that you are interested in contributing to Vue.js. Before

- Make sure tests pass!

- Commit messages must follow the [commit message convention](./COMMIT_CONVENTION.md) so that changelogs can be automatically generated. Commit messages are automatically validated before commit.
- Commit messages must follow the [commit message convention](./commit-convention.md) so that changelogs can be automatically generated. Commit messages are automatically validated before commit.

- No need to worry about code style as long as you have installed the dev dependencies - modified files are automatically formatted with Prettier on commit.

Expand Down
2 changes: 1 addition & 1 deletion scripts/verifyCommit.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if (!commitRE.test(msg)) {
` ${chalk.green(
`fix(v-model): handle events on blur (close #28)`
)}\n\n` +
chalk.red(` See .github/COMMIT_CONVENTION.md for more details.\n`) +
chalk.red(` See .github/commit-convention.md for more details.\n`) +
chalk.red(
` You can also use ${chalk.cyan(
`npm run commit`
Expand Down

0 comments on commit 0fe8801

Please sign in to comment.