-
Notifications
You must be signed in to change notification settings - Fork 1
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
Consider to use tool hygiene #23
Comments
As mentioned in #22 (comment), a pre-commit hook may become handy here. |
I didn't know about pre-commit I am going to study it |
Also now having a GitHub action, the tools mentioned above may be used for server-side linting too. |
I’d like to do this as soon as possible. |
The codebase is now formatted with |
Let’s add |
Sources:
- name: Run Credo
run: mix credo --strict
https://hashrocket.com/blog/posts/build-the-ultimate-elixir-ci-with-github-actions |
This article advise to use at the start of each elixir project tools for control the quality of code.
basic tool for check:
mix format
mix credo --strict
mix dialyzer
We can use all tools above in one with name
hygiene
with commandmix hygiene
.The text was updated successfully, but these errors were encountered: