Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/antoinegagne/rebar3_shellcheck
rebar3 plugin to run shellcheck on given shell scripts
https://github.com/antoinegagne/rebar3_shellcheck
Last synced: 2 months ago
JSON representation
rebar3 plugin to run shellcheck on given shell scripts
- Host: GitHub
- URL: https://github.com/antoinegagne/rebar3_shellcheck
- Owner: AntoineGagne
- License: bsd-3-clause
- Created: 2018-10-03T19:25:27.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-09T15:58:32.000Z (about 5 years ago)
- Last Synced: 2024-09-23T10:37:30.209Z (3 months ago)
- Language: Erlang
- Size: 11.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rebar3\_shellcheck
A `rebar3` plugin that runs `shellcheck` on given shell scripts.
## Usage
This plugin can found on [Hex](https://hex.pm/packages/rebar3_shellcheck).
Alternatively, you can add the plugin to your `rebar config` in the following
way:```erlang
{plugins, [
{shellcheck, ".*", {git, "[email protected]:AntoineGagne/rebar3_shellcheck.git", {tag, "v1.0.0"}}}
]}.
```Then just call your plugin directly in an existing application:
```sh
rebar3 shellcheck
```