File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,6 @@ defmodule Mix.Tasks.Compile.Elixir do
56
56
* `--long-compilation-threshold N` - sets the "long compilation" threshold
57
57
(in seconds) to `N` (see the docs for `Kernel.ParallelCompiler.compile/2`)
58
58
* `--profile` - if set to `time`, outputs timing information of compilation steps
59
- * `--all-warnings` - prints warnings even from files that do not need to be recompiled
60
59
* `--tracer` - adds a compiler tracer in addition to any specified in the `mix.exs` file
61
60
62
61
## Configuration
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ defmodule Mix.Tasks.Compile do
46
46
47
47
## Command line options
48
48
49
+ * `--all-warnings` - prints warnings even from files that do not need to be recompiled
49
50
* `--erl-config` - path to an Erlang term file that will be loaded as Mix config
50
51
* `--force` - forces compilation
51
52
* `--list` - lists all enabled compilers
Original file line number Diff line number Diff line change @@ -107,6 +107,8 @@ defmodule Mix.Tasks.Test do
107
107
108
108
## Command line options
109
109
110
+ * `--all-warnings` - prints warnings even from files that do not need to be recompiled
111
+
110
112
* `--color` - enables color in the output
111
113
112
114
* `--cover` - runs coverage tool. See "Coverage" section below
@@ -389,6 +391,7 @@ defmodule Mix.Tasks.Test do
389
391
"""
390
392
391
393
@ switches [
394
+ all_warnings: :boolean ,
392
395
force: :boolean ,
393
396
color: :boolean ,
394
397
cover: :boolean ,
You can’t perform that action at this time.
0 commit comments