Skip to content

Commit 8835732

Browse files
fix(action): disable rule "body-max-line-length"
``` body's lines must not be longer than 100 characters [body-max-line-length] ```
1 parent 527a02e commit 8835732

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ runs:
3737
3838
if [[ $RULES_LENGTH == 0 ]]; then
3939
npm install --silent --no-save ${{ inputs.config }}
40-
echo '{"extends":["${{ inputs.config }}"],"rules":{"body-max-line-length":[1,"always",100]}}' > .commitlintrc.json
40+
echo '{"extends":["${{ inputs.config }}"],"rules":{"body-max-line-length":[0,"always",100]}}' > .commitlintrc.json
4141
fi
4242
4343
- name: Run commitlint

0 commit comments

Comments
 (0)