https://github.com/carakan/pronto-credo
pronto runner for credo, a code analysis tool for Elixir programming language
https://github.com/carakan/pronto-credo
checker elixir pronto runner
Last synced: about 1 year ago
JSON representation
pronto runner for credo, a code analysis tool for Elixir programming language
- Host: GitHub
- URL: https://github.com/carakan/pronto-credo
- Owner: carakan
- License: mit
- Created: 2016-04-08T23:20:32.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2021-06-10T23:12:45.000Z (about 5 years ago)
- Last Synced: 2025-03-23T22:07:36.644Z (over 1 year ago)
- Topics: checker, elixir, pronto, runner
- Language: Ruby
- Homepage:
- Size: 24.4 KB
- Stars: 13
- Watchers: 3
- Forks: 9
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
Credo-pronto
============
[Pronto](https://github.com/mmozuras/pronto) runner for [credo](https://github.com/rrrene/credo)
Configuring runner
==================
First need install erlang-elixir-mix properly
Now you will need a global installation of mix credo and bunt.
To install blunt (globally)
```
git clone https://github.com/rrrene/bunt
cd bunt
mix archive.build
mix archive.install
```
To install credo (globally):
```
git clone https://github.com/rrrene/credo
cd credo
mix archive.build
mix archive.install
```
Installation
============
After install successfully credo globally you simple need install this gem
```
gem install pronto-credo
```
After the gem is installed, Pronto will already detect credo runner inside a
elixir project.
Configure checkers
==================
You can configure what checkers need in the project using `.credo.exs`
[configuration file](https://github.com/rrrene/credo/blob/master/.credo.exs)
Credits
=======
- [pronto-tailor](https://github.com/ajanauskas/pronto-tailor)