Skip to content

Commit

Permalink
Merge branch 'master' of github.com:rrrene/credo
Browse files Browse the repository at this point in the history
  • Loading branch information
rrrene committed Apr 19, 2018
2 parents 3f8bf10 + 0b228df commit b6b0e99
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
erlang 20.0
erlang 20.2
elixir 1.6.4
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Add `:credo` as a dependency to your project's `mix.exs`:
```elixir
defp deps do
[
{:credo, "~> 0.9.0-rc1", only: [:dev, :test], runtime: false}
{:credo, "~> 0.9.1", only: [:dev, :test], runtime: false}
]
end
```
Expand Down
5 changes: 4 additions & 1 deletion lib/credo/check/refactor/pipe_chain_start.ex
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ defmodule Credo.Check.Refactor.PipeChainStart do

@explanation [
check: @moduledoc,
excluded_functions: "All functions listed will be ignored."
params: [
excluded_functions: "All functions listed will be ignored.",
excluded_argument_types: "All pipes with argument types listed will be ignored."
]
]
@default_params [excluded_argument_types: [], excluded_functions: []]

Expand Down

0 comments on commit b6b0e99

Please sign in to comment.