-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy path.check.exs
More file actions
44 lines (36 loc) · 1.42 KB
/
Copy path.check.exs
File metadata and controls
44 lines (36 loc) · 1.42 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[
## don't run tools concurrently
# parallel: false,
## don't print info about skipped tools
# skipped: false,
## always run tools in fix mode (put it in ~/.check.exs locally, not in project config)
# fix: true,
## don't retry automatically even if last run resulted in failures
retry: false,
## list of tools (see `mix check` docs for a list of default curated tools)
tools: [
## curated tools may be disabled (e.g. the check for compilation warnings)
# {:compiler, false},
## ...or have command & args adjusted (e.g. enable skip comments for sobelow)
# {:sobelow, "mix sobelow --exit --skip"},
## ...or reordered (e.g. to see output from dialyzer before others)
# {:dialyzer, order: -1},
## ...or reconfigured (e.g. disable parallel execution of ex_unit in umbrella)
# {:ex_unit, umbrella: [parallel: false]},
## custom new tools may be added (Mix tasks or arbitrary commands)
# {:my_task, "mix my_task", env: %{"MIX_ENV" => "prod"}},
# {:my_tool, ["my_tool", "arg with spaces"]}
{:compiler, true},
{:formatter, true},
{:unused_deps, true},
{:credo, "mix credo --min-priority high"},
{:mix_audit, false},
{:hex_audit, "mix hex.audit"},
{:sobelow, "mix sobelow --exit --threshold high -i Config.HTTPS"},
{:ex_unit, true},
{:gettext, "mix gettext.extract --check-up-to-date"},
{:dialyzer, false},
{:doctor, false},
{:ex_doc, false}
]
]