mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-10 18:39:38 -06:00
chore(commitlint): update line length rules for body and footer to 120 characters
- Adjust body-max-line-length and footer-max-line-length in commitlint configuration to allow for longer lines, improving readability and accommodating more detailed commit messages.
This commit is contained in:
parent
3ddbd6a7fb
commit
0a357089b3
@ -27,8 +27,8 @@ module.exports = {
|
|||||||
'subject-full-stop': [2, 'never', '.'],
|
'subject-full-stop': [2, 'never', '.'],
|
||||||
'header-max-length': [2, 'always', 100],
|
'header-max-length': [2, 'always', 100],
|
||||||
'body-leading-blank': [1, 'always'],
|
'body-leading-blank': [1, 'always'],
|
||||||
'body-max-line-length': [2, 'always', 100],
|
'body-max-line-length': [2, 'always', 120],
|
||||||
'footer-leading-blank': [1, 'always'],
|
'footer-leading-blank': [1, 'always'],
|
||||||
'footer-max-line-length': [2, 'always', 100],
|
'footer-max-line-length': [2, 'always', 120],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@ -56,7 +56,7 @@
|
|||||||
"eslint --fix"
|
"eslint --fix"
|
||||||
],
|
],
|
||||||
"src/**/*.ts": [
|
"src/**/*.ts": [
|
||||||
"tsc --noEmit --incremental"
|
"sh -c 'npm run build'"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user