%{ | |
configs: [ | |
%{ | |
name: "default", | |
checks: %{ | |
extra: [ | |
{Credo.Check.Design.TagTODO, exit_status: 0}, | |
# NOTE: (2024-01-31) Noah Settersten => I'm disabling this for now, as I prefer to decide whether to alias a | |
# module based on context. At times, I find it be helpful to have the full namespace in the function call for | |
# reference. | |
{Credo.Check.Design.AliasUsage, false}, | |
# This will be handled by `mix format` | |
{Credo.Check.Readability.MaxLineLength, false} | |
] | |
} | |
} | |
] | |
} | |