Current section

Files

Jump to
credo lib credo cli command list list_output.ex
Raw

lib/credo/cli/command/list/list_output.ex

defmodule Credo.CLI.Command.List.ListOutput do
@moduledoc false
use Credo.CLI.Output.FormatDelegator,
default: Credo.CLI.Command.List.Output.Default,
flycheck: Credo.CLI.Command.List.Output.FlyCheck,
oneline: Credo.CLI.Command.List.Output.Oneline,
json: Credo.CLI.Command.List.Output.Json,
sarif: Credo.CLI.Command.List.Output.Sarif
alias Credo.CLI.Output.UI
def print_help(exec) do
usage = ["Usage: ", :olive, "mix credo list [options]"]
description = """
Lists objects that Credo thinks can be improved ordered by their priority.
"""
example = [
"Examples:\n",
:olive,
" $ mix credo list --format json\n",
" $ mix credo list \"lib/**/*.ex\" --only consistency --all\n",
" $ mix credo list --checks-without-tag formatter --checks-without-tag controversial"
]
options =
"""
Arrows (↑ ↗ → ↘ ↓) hint at the importance of an issue.
List options:
-a, --all Show all issues
-A, --all-priorities Show all issues including low priority ones
-c, --checks Only include checks that match the given strings
--checks-with-tag Only include checks that match the given tag (can be used multiple times)
--checks-without-tag Ignore checks that match the given tag (can be used multiple times)
--config-file Use the given config file
-C, --config-name Use the given config instead of "default"
--enable-disabled-checks Re-enable disabled checks that match the given strings
--files-included Only include these files (accepts globs, can be used multiple times)
--files-excluded Exclude these files (accepts globs, can be used multiple times)
--format Display the list in a specific format (json,flycheck,sarif,oneline)
-i, --ignore-checks Ignore checks that match the given strings
--ignore Alias for --ignore-checks
--min-priority Minimum priority to show issues (higher,high,normal,low,ignore or number)
--mute-exit-status Exit with status zero even if there are issues
--only Alias for --checks
--strict Alias for --all-priorities
General options:
--[no-]color Toggle colored output
-v, --version Show version
-h, --help Show this help
Find advanced usage instructions and more examples here:
https://hexdocs.pm/credo/list_command.html
Give feedback and open an issue here:
https://github.com/rrrene/credo/issues
"""
|> String.trim_trailing()
UI.puts()
UI.puts(usage)
UI.puts(description)
UI.puts(example)
UI.puts(options)
exec
end
end