Skip to content

Commit

Permalink
fix(commitlint): invalid config name (config-angular) (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
ybiquitous authored Dec 5, 2017
1 parent fd3e1eb commit dc8b1a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class Init {
await this.writeFile(
'commitlint.config.js',
`module.exports = {
extends: ['@commitlint/config-angular'],
extends: ['@commitlint/config-conventional'],
}`,
)
}
Expand Down
2 changes: 1 addition & 1 deletion test/init.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ suite('init', () => {
assert(
wrote ===
`module.exports = {
extends: ['@commitlint/config-angular'],
extends: ['@commitlint/config-conventional'],
}
`,
)
Expand Down

0 comments on commit dc8b1a5

Please sign in to comment.