andreoliwa/nitpick

View on GitHub
src/nitpick/resources/shell/shellcheck.toml

Summary

Maintainability
Test Coverage
[nitpick.meta]
name = "ShellCheck (static analysis for shell scripts)"
url = "https://github.com/koalaman/shellcheck"

[".codeclimate.yml".plugins.shellcheck]  # https://docs.codeclimate.com/docs/shellcheck
# https://github.com/koalaman/shellcheck
enabled = true

[[".pre-commit-config.yaml".repos]]
# This repo installs the "shellcheck" executable, and this is needed in order to run it on https://pre-commit.ci.
# The previous hook I used (https://github.com/jumanjihouse/pre-commit-hooks) didn't do that, and fails with the error
# "This check needs shellcheck from https://github.com/koalaman/shellcheck"
repo = "https://github.com/shellcheck-py/shellcheck-py"

[[".pre-commit-config.yaml".repos.hooks]]
id = "shellcheck"