Skip to content
Snippets Groups Projects
Verified Commit ddcd0910 authored by Haelwenn's avatar Haelwenn
Browse files

[Credo][CI] Do not make TODO/FIXME fail

parent 6c8743d0
No related branches found
No related tags found
No related merge requests found
......@@ -69,8 +69,8 @@
# You can also customize the exit_status of each check.
# If you don't want TODO comments to cause `mix credo` to fail, just
# set this value to 0 (zero).
{Credo.Check.Design.TagTODO, exit_status: 2},
{Credo.Check.Design.TagFIXME},
{Credo.Check.Design.TagTODO, exit_status: 0},
{Credo.Check.Design.TagFIXME, exit_status: 0},
{Credo.Check.Readability.FunctionNames},
{Credo.Check.Readability.LargeNumbers},
......
......@@ -42,4 +42,4 @@ unit-testing:
analysis:
stage: analysis
script:
- mix credo list --only=warnings
- mix credo list --only=warnings,todo,fixme
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment