File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525 - :install:npm:eslint
2626 - :install:software:unbuffer
2727 desc : Fix ESLint errors automatically
28- vars :
29- ESLINT_LOG :
30- sh : mktemp
3128 summary : |
3229 # Fix Errors with ESLint Automatically
3330
4037
4138 **Example fixing all files in a project:**
4239 `task fix:js`
40+ vars :
41+ ESLINT_LOG :
42+ sh : mktemp
4343 log :
4444 error : ESLint found some issues that need to be fixed manually
4545 start : Auto-fixing with ESLint
Original file line number Diff line number Diff line change @@ -607,6 +607,15 @@ tasks:
607607 status :
608608 - type git > /dev/null
609609
610+ git-issue:admin :
611+ run : once
612+ cmds :
613+ - git clone https://github.com/dspinellis/git-issue.git .git-issue
614+ - |
615+ cd .git-issue
616+ sudo make install
617+ - rm -rf .git-issue
618+
610619 gitlab-runner :
611620 run : once
612621 cmds :
@@ -621,15 +630,6 @@ tasks:
621630 vars :
622631 PACKAGE : gitleaks
623632
624- git-issue:admin :
625- run : once
626- cmds :
627- - git clone https://github.com/dspinellis/git-issue.git .git-issue
628- - |
629- cd .git-issue
630- sudo make install
631- - rm -rf .git-issue
632-
633633 glab :
634634 run : once
635635 cmds :
Original file line number Diff line number Diff line change @@ -489,6 +489,12 @@ tasks:
489489 success :
490490 deps :
491491 - :install:software:jq
492+ summary : |
493+ | Command property | Description |
494+ |------------------|---------------------------------------------------------------------------------------------------------------------|
495+ | `exit code` | Any non `0` code is considered as an unexpected error and will stop the `semantic-release` execution with an error. |
496+ | `stdout` | Can be used for logging. |
497+ | `stderr` | Can be used for logging. |
492498 env :
493499 PACKAGE_JSON :
494500 sh : jq -r '.' package.json
@@ -498,12 +504,6 @@ tasks:
498504 sh : mktemp
499505 VARIABLES_JSON :
500506 sh : jq -r '.' .variables.json
501- summary : |
502- | Command property | Description |
503- |------------------|---------------------------------------------------------------------------------------------------------------------|
504- | `exit code` | Any non `0` code is considered as an unexpected error and will stop the `semantic-release` execution with an error. |
505- | `stdout` | Can be used for logging. |
506- | `stderr` | Can be used for logging. |
507507 cmds :
508508 - jq -n --arg pkg "$PACKAGE_JSON" --arg release "$RELEASE_JSON" --arg vars "$VARIABLES_JSON"
509509 ' .["package.json"] = $pkg | .[".release.json"] = $release | .[".variables.json"] = $vars' > "$TMP"
You can’t perform that action at this time.
0 commit comments