File size: 586 Bytes
138c8ae 7b1761b 138c8ae |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
%{
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}
]
}
}
]
}
|