|
5 | 5 | mix compile --force --warnings-as-errors
|
6 | 6 |
|
7 | 7 |
|
8 |
| -mix credo --mute-exit-status | ./test/error_if_warnings.sh |
| 8 | +mix credo --mute-exit-status 2>&1 | ./test/error_if_warnings.sh |
9 | 9 |
|
10 |
| -mix credo --strict --enable-disabled-checks . --mute-exit-status | ./test/error_if_warnings.sh |
| 10 | +mix credo --strict --enable-disabled-checks . --mute-exit-status 2>&1 | ./test/error_if_warnings.sh |
11 | 11 |
|
12 |
| -mix credo --strict --enable-disabled-checks . --mute-exit-status --format=json | ./test/error_if_warnings.sh |
| 12 | +mix credo --strict --enable-disabled-checks . --mute-exit-status --format=json 2>&1 | ./test/error_if_warnings.sh |
13 | 13 |
|
14 |
| -mix credo lib/credo.ex --read-from-stdin --strict < lib/credo.ex | ./test/error_if_warnings.sh |
| 14 | +mix credo lib/credo.ex --read-from-stdin --strict < lib/credo.ex 2>&1 | ./test/error_if_warnings.sh |
15 | 15 |
|
16 |
| -mix credo list --mute-exit-status | ./test/error_if_warnings.sh |
| 16 | +mix credo list --mute-exit-status 2>&1 | ./test/error_if_warnings.sh |
17 | 17 |
|
18 |
| -mix credo suggest --mute-exit-status | ./test/error_if_warnings.sh |
| 18 | +mix credo suggest --mute-exit-status 2>&1 | ./test/error_if_warnings.sh |
19 | 19 |
|
20 |
| -mix credo diff HEAD^ --mute-exit-status | ./test/error_if_warnings.sh |
| 20 | +mix credo diff HEAD^ --mute-exit-status 2>&1 | ./test/error_if_warnings.sh |
21 | 21 |
|
22 |
| -mix credo diff v1.4.0 --mute-exit-status | ./test/error_if_warnings.sh |
| 22 | +mix credo diff v1.4.0 --mute-exit-status 2>&1 | ./test/error_if_warnings.sh |
23 | 23 |
|
24 |
| -mix credo explain test/fixtures/example_code/clean_redux.ex:1:11 --mute-exit-status | ./test/error_if_warnings.sh |
| 24 | +mix credo explain test/fixtures/example_code/clean_redux.ex:1:11 --mute-exit-status 2>&1 | ./test/error_if_warnings.sh |
25 | 25 |
|
26 |
| -mix credo explain Credo.Check.Refactor.Nesting --mute-exit-status | ./test/error_if_warnings.sh |
| 26 | +mix credo explain Credo.Check.Refactor.Nesting --mute-exit-status 2>&1 | ./test/error_if_warnings.sh |
27 | 27 |
|
28 |
| -mix credo categories | ./test/error_if_warnings.sh |
| 28 | +mix credo categories 2>&1 | ./test/error_if_warnings.sh |
29 | 29 |
|
30 |
| -mix credo info --verbose | ./test/error_if_warnings.sh |
| 30 | +mix credo info --verbose 2>&1 | ./test/error_if_warnings.sh |
31 | 31 |
|
32 |
| -mix credo version | ./test/error_if_warnings.sh |
| 32 | +mix credo version 2>&1 | ./test/error_if_warnings.sh |
33 | 33 |
|
34 |
| -mix credo help | ./test/error_if_warnings.sh |
| 34 | +mix credo help 2>&1 | ./test/error_if_warnings.sh |
35 | 35 |
|
36 | 36 |
|
37 | 37 | echo ""
|
|
0 commit comments