├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ └── issue-template.yml ├── advanced-issue-labeler.yml ├── dependabot.yml ├── labeler.yml ├── linters │ ├── .hadolint.yaml │ ├── .markdown-lint.yml │ └── .yaml-lint.yml ├── release-drafter.yml └── workflows │ ├── deploy-production.yml │ ├── deploy-release.yml │ ├── deploy-test.yml │ ├── differential-shellcheck.yml │ ├── issue-labeler.yml │ ├── labeler.yml │ ├── linter.yml │ ├── publish-release.yml │ ├── release-drafter.yml │ ├── scorecard-analysis.yml │ └── unit-test.yml ├── .gitignore ├── .gitmodules ├── .shellcheckrc ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── action.yml ├── docs ├── ARCHITECTURE.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── SECURITY.md ├── example.sh ├── example.xhtml └── images │ ├── csgrep-output-example.png │ ├── html-output-exmple.png │ ├── job-summary-dark.png │ ├── job-summary-light.png │ ├── output-example.png │ ├── sarif-comment-dark.png │ ├── sarif-comment-light.png │ ├── sarif-fmt-output-example.png │ ├── sarif-output-example-dark.png │ ├── sarif-output-example-light.png │ ├── vs-code-sarif-connect-dark.png │ └── vs-code-sarif-results-dark.png ├── src ├── functions.sh ├── index.sh ├── setup.sh ├── summary.sh └── validation.sh └── test ├── Dockerfile ├── compose_results_link.bats ├── diff_scan_summary.bats ├── evaluate_and_print_defects.bats ├── evaluate_and_print_fixes.bats ├── file_to_array.bats ├── fixtures ├── evaluate_and_print_defects │ └── defects.log ├── evaluate_and_print_fixes │ └── fixes.log ├── file_to_array │ └── files.txt ├── gather_statistics │ └── defects.log ├── generate_SARIF │ ├── defects.log │ └── test.sarif ├── get_defects │ ├── base.err │ ├── defects.log │ └── head.err ├── get_fixes │ ├── base.err │ ├── fixes.log │ └── head.err ├── get_number_of_defects_by_severity │ └── defects.log ├── get_scripts_for_scanning │ ├── $script4.sh │ ├── dm-back\x2dslash.swap │ ├── files.txt │ ├── non-script.md │ ├── script 2.sh │ ├── script&3.sh │ ├── script1.sh │ └── script2 ├── print_result │ ├── defects.log │ └── fixes.log └── print_statistics │ └── defects.log ├── full_scan_summary.bats ├── gather_statistics.bats ├── generate_SARIF.bats ├── get_defects.bats ├── get_fixes.bats ├── get_number_of.bats ├── get_number_of_defects_by_severity.bats ├── get_scripts_for_scanning.bats ├── has_shebang.bats ├── index.bats ├── is_debug.bats ├── is_false.bats ├── is_file_inside_scan_directory.bats ├── is_full_scan_demanded.bats ├── is_github_actions.bats ├── is_matched_by_path.bats ├── is_shell_extension.bats ├── is_strict_check_on_push_demanded.bats ├── is_symlink.bats ├── is_true.bats ├── is_unit_tests.bats ├── link_to_results.bats ├── pick_base_and_head_hash.bats ├── print_result.bats ├── print_statistics.bats ├── show_versions.bats ├── summary.bats ├── summary_defect_statistics.bats ├── summary_useful_links.bats └── test_helper └── common-setup.bash /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/ISSUE_TEMPLATE/issue-template.yml -------------------------------------------------------------------------------- /.github/advanced-issue-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/advanced-issue-labeler.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/linters/.hadolint.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | failure-threshold: warning 4 | 5 | ignored: 6 | - DL3041 7 | -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.github/linters/.yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/linters/.yaml-lint.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/workflows/deploy-production.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/workflows/deploy-release.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/workflows/deploy-test.yml -------------------------------------------------------------------------------- /.github/workflows/differential-shellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/workflows/differential-shellcheck.yml -------------------------------------------------------------------------------- /.github/workflows/issue-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/workflows/issue-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/workflows/scorecard-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/unit-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.github/workflows/unit-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | .vscode 3 | 4 | *.sarif 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.gitmodules -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/action.yml -------------------------------------------------------------------------------- /docs/ARCHITECTURE.md: -------------------------------------------------------------------------------- 1 | # Architecture 2 | 3 | ... 4 | -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/SECURITY.md -------------------------------------------------------------------------------- /docs/example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/example.sh -------------------------------------------------------------------------------- /docs/example.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/example.xhtml -------------------------------------------------------------------------------- /docs/images/csgrep-output-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/images/csgrep-output-example.png -------------------------------------------------------------------------------- /docs/images/html-output-exmple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/images/html-output-exmple.png -------------------------------------------------------------------------------- /docs/images/job-summary-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/images/job-summary-dark.png -------------------------------------------------------------------------------- /docs/images/job-summary-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/images/job-summary-light.png -------------------------------------------------------------------------------- /docs/images/output-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/images/output-example.png -------------------------------------------------------------------------------- /docs/images/sarif-comment-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/images/sarif-comment-dark.png -------------------------------------------------------------------------------- /docs/images/sarif-comment-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/images/sarif-comment-light.png -------------------------------------------------------------------------------- /docs/images/sarif-fmt-output-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/images/sarif-fmt-output-example.png -------------------------------------------------------------------------------- /docs/images/sarif-output-example-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/images/sarif-output-example-dark.png -------------------------------------------------------------------------------- /docs/images/sarif-output-example-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/images/sarif-output-example-light.png -------------------------------------------------------------------------------- /docs/images/vs-code-sarif-connect-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/images/vs-code-sarif-connect-dark.png -------------------------------------------------------------------------------- /docs/images/vs-code-sarif-results-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/docs/images/vs-code-sarif-results-dark.png -------------------------------------------------------------------------------- /src/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/src/functions.sh -------------------------------------------------------------------------------- /src/index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/src/index.sh -------------------------------------------------------------------------------- /src/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/src/setup.sh -------------------------------------------------------------------------------- /src/summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/src/summary.sh -------------------------------------------------------------------------------- /src/validation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/src/validation.sh -------------------------------------------------------------------------------- /test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/Dockerfile -------------------------------------------------------------------------------- /test/compose_results_link.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/compose_results_link.bats -------------------------------------------------------------------------------- /test/diff_scan_summary.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/diff_scan_summary.bats -------------------------------------------------------------------------------- /test/evaluate_and_print_defects.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/evaluate_and_print_defects.bats -------------------------------------------------------------------------------- /test/evaluate_and_print_fixes.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/evaluate_and_print_fixes.bats -------------------------------------------------------------------------------- /test/file_to_array.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/file_to_array.bats -------------------------------------------------------------------------------- /test/fixtures/evaluate_and_print_defects/defects.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/evaluate_and_print_defects/defects.log -------------------------------------------------------------------------------- /test/fixtures/evaluate_and_print_fixes/fixes.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/evaluate_and_print_fixes/fixes.log -------------------------------------------------------------------------------- /test/fixtures/file_to_array/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/file_to_array/files.txt -------------------------------------------------------------------------------- /test/fixtures/gather_statistics/defects.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/gather_statistics/defects.log -------------------------------------------------------------------------------- /test/fixtures/generate_SARIF/defects.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/generate_SARIF/defects.log -------------------------------------------------------------------------------- /test/fixtures/generate_SARIF/test.sarif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/generate_SARIF/test.sarif -------------------------------------------------------------------------------- /test/fixtures/get_defects/base.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/get_defects/base.err -------------------------------------------------------------------------------- /test/fixtures/get_defects/defects.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/get_defects/defects.log -------------------------------------------------------------------------------- /test/fixtures/get_defects/head.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/get_defects/head.err -------------------------------------------------------------------------------- /test/fixtures/get_fixes/base.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/get_fixes/base.err -------------------------------------------------------------------------------- /test/fixtures/get_fixes/fixes.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/get_fixes/fixes.log -------------------------------------------------------------------------------- /test/fixtures/get_fixes/head.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/get_fixes/head.err -------------------------------------------------------------------------------- /test/fixtures/get_number_of_defects_by_severity/defects.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/get_number_of_defects_by_severity/defects.log -------------------------------------------------------------------------------- /test/fixtures/get_scripts_for_scanning/$script4.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "script" 4 | -------------------------------------------------------------------------------- /test/fixtures/get_scripts_for_scanning/dm-back\x2dslash.swap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/get_scripts_for_scanning/dm-back\x2dslash.swap -------------------------------------------------------------------------------- /test/fixtures/get_scripts_for_scanning/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/get_scripts_for_scanning/files.txt -------------------------------------------------------------------------------- /test/fixtures/get_scripts_for_scanning/non-script.md: -------------------------------------------------------------------------------- 1 | # DOCUMENTATION - /bin/bash 2 | 3 | - echo "script" 4 | -------------------------------------------------------------------------------- /test/fixtures/get_scripts_for_scanning/script 2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "script" 4 | -------------------------------------------------------------------------------- /test/fixtures/get_scripts_for_scanning/script&3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "script" 4 | -------------------------------------------------------------------------------- /test/fixtures/get_scripts_for_scanning/script1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "script" 4 | -------------------------------------------------------------------------------- /test/fixtures/get_scripts_for_scanning/script2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/get_scripts_for_scanning/script2 -------------------------------------------------------------------------------- /test/fixtures/print_result/defects.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/print_result/defects.log -------------------------------------------------------------------------------- /test/fixtures/print_result/fixes.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/print_result/fixes.log -------------------------------------------------------------------------------- /test/fixtures/print_statistics/defects.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/fixtures/print_statistics/defects.log -------------------------------------------------------------------------------- /test/full_scan_summary.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/full_scan_summary.bats -------------------------------------------------------------------------------- /test/gather_statistics.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/gather_statistics.bats -------------------------------------------------------------------------------- /test/generate_SARIF.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/generate_SARIF.bats -------------------------------------------------------------------------------- /test/get_defects.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/get_defects.bats -------------------------------------------------------------------------------- /test/get_fixes.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/get_fixes.bats -------------------------------------------------------------------------------- /test/get_number_of.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/get_number_of.bats -------------------------------------------------------------------------------- /test/get_number_of_defects_by_severity.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/get_number_of_defects_by_severity.bats -------------------------------------------------------------------------------- /test/get_scripts_for_scanning.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/get_scripts_for_scanning.bats -------------------------------------------------------------------------------- /test/has_shebang.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/has_shebang.bats -------------------------------------------------------------------------------- /test/index.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/index.bats -------------------------------------------------------------------------------- /test/is_debug.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/is_debug.bats -------------------------------------------------------------------------------- /test/is_false.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/is_false.bats -------------------------------------------------------------------------------- /test/is_file_inside_scan_directory.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/is_file_inside_scan_directory.bats -------------------------------------------------------------------------------- /test/is_full_scan_demanded.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/is_full_scan_demanded.bats -------------------------------------------------------------------------------- /test/is_github_actions.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/is_github_actions.bats -------------------------------------------------------------------------------- /test/is_matched_by_path.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/is_matched_by_path.bats -------------------------------------------------------------------------------- /test/is_shell_extension.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/is_shell_extension.bats -------------------------------------------------------------------------------- /test/is_strict_check_on_push_demanded.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/is_strict_check_on_push_demanded.bats -------------------------------------------------------------------------------- /test/is_symlink.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/is_symlink.bats -------------------------------------------------------------------------------- /test/is_true.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/is_true.bats -------------------------------------------------------------------------------- /test/is_unit_tests.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/is_unit_tests.bats -------------------------------------------------------------------------------- /test/link_to_results.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/link_to_results.bats -------------------------------------------------------------------------------- /test/pick_base_and_head_hash.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/pick_base_and_head_hash.bats -------------------------------------------------------------------------------- /test/print_result.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/print_result.bats -------------------------------------------------------------------------------- /test/print_statistics.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/print_statistics.bats -------------------------------------------------------------------------------- /test/show_versions.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/show_versions.bats -------------------------------------------------------------------------------- /test/summary.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/summary.bats -------------------------------------------------------------------------------- /test/summary_defect_statistics.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/summary_defect_statistics.bats -------------------------------------------------------------------------------- /test/summary_useful_links.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/summary_useful_links.bats -------------------------------------------------------------------------------- /test/test_helper/common-setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-plumbers-in-action/differential-shellcheck/HEAD/test/test_helper/common-setup.bash --------------------------------------------------------------------------------