noahsettersten commited on
Commit
7b1761b
1 Parent(s): 59fddbd

chore: Disable additional Credo checks

Browse files
Files changed (1) hide show
  1. .credo.exs +9 -1
.credo.exs CHANGED
@@ -4,7 +4,15 @@
4
  name: "default",
5
  checks: %{
6
  extra: [
7
- {Credo.Check.Design.TagTODO, exit_status: 0}
 
 
 
 
 
 
 
 
8
  ]
9
  }
10
  }
 
4
  name: "default",
5
  checks: %{
6
  extra: [
7
+ {Credo.Check.Design.TagTODO, exit_status: 0},
8
+
9
+ # NOTE: (2024-01-31) Noah Settersten => I'm disabling this for now, as I prefer to decide whether to alias a
10
+ # module based on context. At times, I find it be helpful to have the full namespace in the function call for
11
+ # reference.
12
+ {Credo.Check.Design.AliasUsage, false},
13
+
14
+ # This will be handled by `mix format`
15
+ {Credo.Check.Readability.MaxLineLength, false}
16
  ]
17
  }
18
  }