Skip to content

Instantly share code, notes, and snippets.

@leandrocp
Last active June 6, 2019 14:17
Show Gist options
  • Save leandrocp/3c6629ec23512114daa4c6a587927db6 to your computer and use it in GitHub Desktop.
Save leandrocp/3c6629ec23512114daa4c6a587927db6 to your computer and use it in GitHub Desktop.
elixir_code_quality_aliases.ex
defp aliases do
[
# current aliases...
quality: ["format", "credo --strict", "sobelow --verbose", "dialyzer", "test"],
"quality.ci": [
"test",
"format --check-formatted",
"credo --strict",
"sobelow --exit",
"dialyzer --halt-exit-status"
]
]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment