Skip to content

Commit 9a8c8ac

Browse files
committed
usage section in readme is elixir syntax
1 parent 547d5cd commit 9a8c8ac

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

README.md

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,23 @@ Define the test suite for bless to run by making a list of tasks and
1010
arguments in your `mix.exs` file. Add a `:test_suite` key to the `project/0`
1111
function like so:
1212

13-
def project do
14-
[
15-
preferred_cli_env: [
16-
bless: :test
17-
],
18-
..
19-
test_suite: [
20-
compile: ["--warnings-as-errors", "--force"],
21-
"coveralls.html": [],
22-
format: ["--check-formatted"],
23-
credo: []
24-
],
25-
..
26-
]
27-
end
13+
```elixir
14+
def project do
15+
[
16+
preferred_cli_env: [
17+
bless: :test
18+
],
19+
..
20+
test_suite: [
21+
compile: ["--warnings-as-errors", "--force"],
22+
"coveralls.html": [],
23+
format: ["--check-formatted"],
24+
credo: []
25+
],
26+
..
27+
]
28+
end
29+
```
2830

2931
Then running `mix bless` will run each of those tasks.
3032

0 commit comments

Comments
 (0)