Skip to content

Commit 2686567

Browse files
mikowitzlpil
authored andcommitted
Replace references to Dogma with references to Credo
Dogma has been deprecated in favor of `mix format`. Credo, which is a library for static code analysis geared more towards coding style improvements rather than enforcing a style guide, makes more sense as an example in the documentation.
1 parent 345bf7d commit 2686567

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ Start hacking :)
6666
## Running Additional Mix Tasks
6767

6868
Through the mix config it is possible to run other mix tasks as well as the
69-
test task. For example, if I wished to run the [Dogma][dogma] code style
70-
linter after my tests I would do so like this.
69+
test task. For example, if I wished to run the [Credo][credo] code analysis
70+
tool after my tests I would do so like this.
7171

72-
[dogma]: https://github.com/lpil/dogma
72+
[credo]: https://github.com/rrrene/credo
7373

7474
```elixir
7575
# config/config.exs
@@ -79,7 +79,7 @@ if Mix.env == :dev do
7979
config :mix_test_watch,
8080
tasks: [
8181
"test",
82-
"dogma",
82+
"credo",
8383
]
8484
end
8585
```

0 commit comments

Comments
 (0)