-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Show more context for ShellCheck defects and fixes in console output 💾 #300
Merged
jamacku
merged 4 commits into
redhat-plumbers-in-action:main
from
jamacku:csgrep-context
Aug 23, 2023
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
a86b1f1
src: use ShellCheck JSON output format
jamacku 9dce9da
fix(statistics): check position of defect optionally
jamacku f994631
fix: remove `sed -e 's|$| <--[shellcheck]|'`, we now use json1 format
jamacku 070cb3b
feat: improve console output by using `csgrep -U`
jamacku File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,34 @@ | ||
Error: SHELLCHECK_WARNING: | ||
src/index.sh:53:10: warning[SC2154]: MAIN_HEADING is referenced but not assigned. | ||
|
||
Error: SHELLCHECK_WARNING: | ||
src/index.sh:56:14: warning[SC2154]: WHITE is referenced but not assigned. | ||
|
||
Error: SHELLCHECK_WARNING: | ||
src/index.sh:56:56: warning[SC2154]: NOCOLOR is referenced but not assigned. | ||
{ | ||
"defects": [ | ||
{ | ||
"checker": "SHELLCHECK_WARNING", | ||
"language": "shell", | ||
"tool": "shellcheck", | ||
"key_event_idx": 0, | ||
"events": [ | ||
{ | ||
"file_name": "innocent-script.sh", | ||
"line": 7, | ||
"event": "warning[SC2034]", | ||
"message": "UNUSED_VAR2 appears unused. Verify use (or export if used externally).", | ||
"verbosity_level": 0 | ||
} | ||
] | ||
}, | ||
{ | ||
"checker": "SHELLCHECK_WARNING", | ||
"language": "shell", | ||
"tool": "shellcheck", | ||
"key_event_idx": 0, | ||
"events": [ | ||
{ | ||
"file_name": "innocent-script.sh", | ||
"line": 11, | ||
"event": "warning[SC2115]", | ||
"message": "Use \"${var:?}\" to ensure this never expands to / .", | ||
"verbosity_level": 0 | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,19 @@ | ||
Error: SHELLCHECK_WARNING: | ||
src/index.sh:7:3: note[SC1091]: Not following: functions.sh: openBinaryFile: does not exist (No such file or directory) | ||
{ | ||
"defects": [ | ||
{ | ||
"checker": "SHELLCHECK_WARNING", | ||
"language": "shell", | ||
"tool": "shellcheck", | ||
"key_event_idx": 0, | ||
"events": [ | ||
{ | ||
"file_name": "innocent-script.sh", | ||
"line": 6, | ||
"event": "warning[SC2034]", | ||
"message": "UNUSED_VAR appears unused. Verify use (or export if used externally).", | ||
"verbosity_level": 0 | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,34 @@ | ||
Error: SHELLCHECK_WARNING: | ||
src/index.sh:53:10: warning[SC2154]: MAIN_HEADING is referenced but not assigned. | ||
|
||
Error: SHELLCHECK_WARNING: | ||
src/index.sh:56:14: warning[SC2154]: WHITE is referenced but not assigned. | ||
|
||
Error: SHELLCHECK_WARNING: | ||
src/index.sh:56:56: warning[SC2154]: NOCOLOR is referenced but not assigned. | ||
{ | ||
"defects": [ | ||
{ | ||
"checker": "SHELLCHECK_WARNING", | ||
"language": "shell", | ||
"tool": "shellcheck", | ||
"key_event_idx": 0, | ||
"events": [ | ||
{ | ||
"file_name": "innocent-script.sh", | ||
"line": 7, | ||
"event": "warning[SC2034]", | ||
"message": "UNUSED_VAR2 appears unused. Verify use (or export if used externally).", | ||
"verbosity_level": 0 | ||
} | ||
] | ||
}, | ||
{ | ||
"checker": "SHELLCHECK_WARNING", | ||
"language": "shell", | ||
"tool": "shellcheck", | ||
"key_event_idx": 0, | ||
"events": [ | ||
{ | ||
"file_name": "innocent-script.sh", | ||
"line": 11, | ||
"event": "warning[SC2115]", | ||
"message": "Use \"${var:?}\" to ensure this never expands to / .", | ||
"verbosity_level": 0 | ||
} | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check warning
Code scanning / shellcheck
Not following: summary.sh: openBinaryFile: does not exist (No such file or directory)