Skip to content

Commit

Permalink
feat(config-conventional): increase header-max-length to 100 (#860)
Browse files Browse the repository at this point in the history
Closes #859.
  • Loading branch information
mightyiam committed Feb 3, 2020
1 parent ee5eac9 commit ff11998
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion @commitlint/config-conventional/README.md
Expand Up @@ -125,7 +125,7 @@ echo "fix: some message" # passes
* **rule**: `always`
* **value**
```js
72
100
```

```sh
Expand Down
2 changes: 1 addition & 1 deletion @commitlint/config-conventional/index.js
Expand Up @@ -3,7 +3,7 @@ module.exports = {
rules: {
'body-leading-blank': [1, 'always'],
'footer-leading-blank': [1, 'always'],
'header-max-length': [2, 'always', 72],
'header-max-length': [2, 'always', 100],
'scope-case': [2, 'always', 'lower-case'],
'subject-case': [
2,
Expand Down

0 comments on commit ff11998

Please sign in to comment.