-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.check.exs
25 lines (20 loc) · 952 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
[
## all available options with default values (see `mix check` docs for description)
parallel: true,
skipped: false,
## list of tools (see `mix check` docs for defaults)
tools: [
{:credo, "mix credo --strict -a"},
{:ex_unit, "mix coveralls", umbrella: [recursive: true, parallel: false]}
## 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, "mix credo --format oneline"},
## ...or reordered (e.g. to see output from ex_unit before others)
# {:ex_unit, order: -1},
## custom new tools may be added (mix tasks or arbitrary commands)
# {:my_mix_task, command: "mix release", env: %{"MIX_ENV" => "prod"}},
# {:my_arbitrary_tool, command: "npm test", cd: "assets"},
# {:my_arbitrary_script, command: ["my_script", "argument with spaces"], cd: "scripts"}
]
]