-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.check.exs
28 lines (23 loc) · 1019 Bytes
/
.check.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[
## all available options with default values (see `mix check` docs for description)
# skipped: true,
# exit_status: true,
# parallel: true,
## list of tools (see `mix check` docs for defaults)
tools: [
## curated tools may be disabled (e.g. the check for compilation warnings)
# {:compiler, false},
## ...or adjusted (e.g. use one-line formatter for more compact credo output)
# {:credo, command: "mix credo --format oneline"},
## custom new tools may be added (mix tasks or arbitrary commands)
# {:my_mix_check, command: "mix release", env: %{"MIX_ENV" => "prod"}},
# {:my_arbitrary_check, command: "npm test", cd: "assets"},
{:ex_coveralls,
command: "mix coveralls.html",
require_files: ["test/test_helper.exs"],
env: %{"MIX_ENV" => "test"}},
{:credo, command: "mix credo --strict"},
{:ex_unit, command: "mix test", env: %{"MIX_ENV" => "test"}}
# {:my_arbitrary_script, command: ["my_script", "argument with spaces"], cd: "scripts"}
]
]